Changeset 1219 for trunk/src/platform/android
- Timestamp:
- Apr 12, 2012, 12:59:29 AM (11 years ago)
- Location:
- trunk/src/platform/android
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/platform/android/androidapp.cpp
r1106 r1219 17 17 18 18 #include "core.h" 19 #include "lolgl.h"20 19 #include "loldebug.h" 20 #include "androidapp.h" 21 21 22 22 using namespace lol; 23 24 /* Monsterz-specific */ 25 #include "interface.h" 23 26 24 27 namespace lol … … 26 29 JavaVM *g_vm; 27 30 jobject g_activity; 31 32 AndroidApp::AndroidApp(char const *title, ivec2 res, float fps) : 33 data(0) 34 { 35 } 36 37 void AndroidApp::ShowPointer(bool show) 38 { 39 } 40 41 void AndroidApp::Run() 42 { 43 while (!Ticker::Finished()) 44 { 45 /* Tick the renderer, show the frame and clamp to desired framerate. */ 46 Ticker::TickDraw(); 47 } 48 } 49 50 AndroidApp::~AndroidApp() 51 { 52 } 53 28 54 }; 29 55
Note: See TracChangeset
for help on using the changeset viewer.