FF7Common.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. -----------------------------------------------------------------------------
  3. Copyright (c) 15.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
  4. This file is part of Q-Gears
  5. Q-Gears is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, version 2.0 (GPLv2) of the License.
  8. Q-Gears is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. -----------------------------------------------------------------------------
  13. */
  14. #ifndef __FF7Common_H__
  15. #define __FF7Common_H__
  16. #include "common/TypeDefine.h"
  17. namespace QGears
  18. {
  19. namespace FF7
  20. {
  21. enum
  22. {
  23. SCREEN_WIDTH = 320
  24. ,SCREEN_HEIGHT = 240
  25. ,FIELD_POSITION_SCALE = 128
  26. ,FIELD_DEPTH_SCALE = 32
  27. };
  28. extern const String EXT_A;
  29. }
  30. }
  31. #endif // __FFVIICommon_H__