You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
474 B

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