PlayerSettings.h 349 B

12345678910111213141516171819202122232425
  1. #ifndef __PLAYER_SETTINGS_H_
  2. #define __PLAYER_SETTINGS_H_
  3. #include "PlayerMacros.h"
  4. PLAYER_NS_BEGIN
  5. class PlayerSettings
  6. {
  7. public:
  8. PlayerSettings()
  9. : openLastProject(false)
  10. , offsetX(0)
  11. , offsetY(0)
  12. {}
  13. bool openLastProject;
  14. int offsetX;
  15. int offsetY;
  16. };
  17. PLAYER_NS_END
  18. #endif // __PLAYER_SETTINGS_H_