source:
trunk/src/platform/sdl/sdlapp.h
@
2183
Last change on this file since 2183 was 2183, checked in by , 10 years ago | |
---|---|
|
|
File size: 731 bytes |
Rev | Line | |
---|---|---|
[253] | 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. |
[253] | 9 | // |
10 | ||
[680] | 11 | // |
12 | // The SdlApp class | |
13 | // ---------------- | |
14 | // | |
[253] | 15 | |
[748] | 16 | #if !defined __LOL_SDLAPP_H__ |
17 | #define __LOL_SDLAPP_H__ | |
[253] | 18 | |
[1139] | 19 | #include "lol/math/vector.h" |
[253] | 20 | |
[686] | 21 | namespace lol |
22 | { | |
23 | ||
[680] | 24 | class SdlAppData; |
[253] | 25 | |
[680] | 26 | class SdlApp |
[253] | 27 | { |
[680] | 28 | public: |
[863] | 29 | SdlApp(char const *title, ivec2 res, float fps); |
[680] | 30 | virtual ~SdlApp(); |
[253] | 31 | |
[1063] | 32 | void ShowPointer(bool show); |
[680] | 33 | void Run(); |
34 | ||
35 | private: | |
36 | SdlAppData *data; | |
37 | }; | |
38 | ||
[686] | 39 | } /* namespace lol */ |
40 | ||
[748] | 41 | #endif // __LOL_SDLAPP_H__ |
[680] | 42 |
Note: See TracBrowser
for help on using the repository browser.