engine/include/SalmonEngineAndroid.h

33 lines
654 B
C
Raw Permalink Normal View History

2013-01-19 20:02:34 +00:00
#ifndef SALMON_ENGINE_ANDROID_H_INCLUDED
#define SALMON_ENGINE_ANDROID_H_INCLUDED
/*
This code combines all headers for Salmon engine into one header file
*/
#include "include/SalmonEngineInterface.h"
namespace SE
{
extern TJavaConsole* Console;
extern TSalmonRendererAndroid* Renderer;
extern TResourceManager* ResourceManager;
class TApplication : public TApplicationAncestor
{
protected:
public:
};
2013-02-05 20:17:58 +00:00
void CreateEngine();
void DestroyEngine();
2013-01-19 20:02:34 +00:00
} //namespace SE
2013-01-29 19:22:48 +00:00
#include "include/GUIManager/WidgetTemplatesImpl.h"
2013-02-03 13:13:42 +00:00
#include "include/Utils/ThreadUtilsImpl.h"
2013-01-29 19:22:48 +00:00
2013-02-08 06:23:46 +00:00
#include "include/Utils/JniApi/JniApplication.h"
2013-01-19 20:02:34 +00:00
#endif