| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- -----------------------------------------------------------------------------
- Copyright (c) 15.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
- This file is part of Q-Gears
- Q-Gears is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, version 2.0 (GPLv2) of the License.
- Q-Gears is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- -----------------------------------------------------------------------------
- */
- #ifndef __FF7Common_H__
- #define __FF7Common_H__
- #include "common/TypeDefine.h"
- namespace QGears
- {
- namespace FF7
- {
- enum
- {
- SCREEN_WIDTH = 320
- ,SCREEN_HEIGHT = 240
- ,FIELD_POSITION_SCALE = 128
- ,FIELD_DEPTH_SCALE = 32
- };
- extern const String EXT_A;
- }
- }
- #endif // __FFVIICommon_H__
|