Last change
on this file since 2812 was
2579,
checked in by sam, 9 years ago
|
android: switch to NativeActivity instead of rolling our own Java crap;
no known regressions yet.
|
-
Property svn:keywords set to
Id
|
File size:
774 bytes
|
Rev | Line | |
---|
[1219] | 1 | // |
---|
| 2 | // Lol Engine |
---|
| 3 | // |
---|
| 4 | // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net> |
---|
| 5 | // This program is free software; you can redistribute it and/or |
---|
| 6 | // modify it under the terms of the Do What The Fuck You Want To |
---|
| 7 | // Public License, Version 2, as published by Sam Hocevar. See |
---|
[2183] | 8 | // http://www.wtfpl.net/ for more details. |
---|
[1219] | 9 | // |
---|
| 10 | |
---|
| 11 | // |
---|
| 12 | // The AndroidApp class |
---|
| 13 | // -------------------- |
---|
| 14 | // |
---|
| 15 | |
---|
| 16 | #if !defined __LOL_ANDROIDAPP_H__ |
---|
| 17 | #define __LOL_ANDROIDAPP_H__ |
---|
| 18 | |
---|
| 19 | #include "lol/math/vector.h" |
---|
| 20 | |
---|
| 21 | namespace lol |
---|
| 22 | { |
---|
| 23 | |
---|
| 24 | class AndroidAppData; |
---|
| 25 | |
---|
| 26 | class AndroidApp |
---|
| 27 | { |
---|
| 28 | public: |
---|
| 29 | AndroidApp(char const *title, ivec2 res, float fps); |
---|
| 30 | virtual ~AndroidApp(); |
---|
| 31 | |
---|
| 32 | void ShowPointer(bool show); |
---|
[2222] | 33 | void Tick(); |
---|
[1219] | 34 | |
---|
| 35 | private: |
---|
[1964] | 36 | AndroidAppData *m_data; |
---|
[1219] | 37 | }; |
---|
| 38 | |
---|
| 39 | } /* namespace lol */ |
---|
| 40 | |
---|
| 41 | #endif // __LOL_ANDROIDAPP_H__ |
---|
| 42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.