No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

40 líneas
669 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://www.wtfpl.net/ for more details.
  9. //
  10. #pragma once
  11. //
  12. // The NaClApp class
  13. // -----------------
  14. //
  15. #include <lol/math/vector.h>
  16. namespace lol
  17. {
  18. class NaClAppData;
  19. class NaClApp
  20. {
  21. public:
  22. NaClApp(char const *title, ivec2 res, float fps);
  23. virtual ~NaClApp();
  24. void ShowPointer(bool show);
  25. void Tick();
  26. private:
  27. NaClAppData *data;
  28. };
  29. } /* namespace lol */