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

35 строки
489 B

  1. //
  2. // Deus Hax (working title)
  3. // Copyright (c) 2010 Sam Hocevar <sam@hocevar.net>
  4. //
  5. //
  6. // The SdlInput class
  7. // ------------------
  8. //
  9. #if !defined __DH_SDLINPUT_H__
  10. #define __DH_SDLINPUT_H__
  11. #include "entity.h"
  12. #include "game.h"
  13. class SdlInputData;
  14. class SdlInput : public Entity
  15. {
  16. public:
  17. SdlInput();
  18. virtual ~SdlInput();
  19. protected:
  20. virtual Group GetGroup();
  21. virtual void TickGame(float deltams);
  22. private:
  23. SdlInputData *data;
  24. };
  25. #endif // __DH_SDLINPUT_H__