Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

42 строки
709 B

  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
  8. // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
  9. //
  10. //
  11. // The EglApp class
  12. // ----------------
  13. //
  14. #if !defined __LOL_EGLAPP_H__
  15. #define __LOL_EGLAPP_H__
  16. #include "matrix.h"
  17. namespace lol
  18. {
  19. class EglAppData;
  20. class EglApp
  21. {
  22. public:
  23. EglApp(char const *title, ivec2 res, float fps);
  24. virtual ~EglApp();
  25. void Run();
  26. private:
  27. EglAppData *data;
  28. };
  29. } /* namespace lol */
  30. #endif // __LOL_EGLAPP_H__