engine/include/HalibutEngineIos.h
2013-01-19 20:02:34 +00:00

53 lines
1.0 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// HalibutEngineIos.h
// Halibut Engine
//
// Created by vvv ооо on 13.07.12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#ifndef HALIBUT_ENGINE_IOS_H_INCLUDED
#define HALIBUT_ENGINE_IOS_H_INCLUDED
#include "include/HalibutEngineInterface.h"
#include "include/Render/HalibutRender/HalibutRenderIos.h"
#include "include/Utils/Utils.h"
namespace SE
{
extern TIosConsole* Console;
extern THalibutResourceManager* ResourceManager;
extern THalibutRenderIos* Renderer;
class TApplication : public TApplicationAncestor
{
public:
TApplication();
virtual ~TApplication();
virtual void OuterInit(int screenWidth, int screenHeight, float matrixWidth, float matrixHeight);
virtual void OuterDeinit();
virtual void OnKeyPress(cardinal key);
};
} //namespace SE
//This file includes templates that call any of three singletones: Console, ResourceManager or Renderer
#include "include/GUIManager/WidgetTemplatesImpl.h"
#endif