12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* License Notice:
- **
- ** This program 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, either version 3 of the License, or
- ** (at your option) any later version.
- ** This program 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.
- ** You should have received a copy of the GNU General Public License
- ** along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * @file demo_level_config.h
- * @author TooOld2Rock'nRoll
- * @date 2023/12/08
- * @remark Last modified in 2023/12/08
- * @brief Values to config the ArcadeFighter Demo Level
- */
- #ifndef _DEMO_LEVEL_CONFIG_H_
- #define _DEMO_LEVEL_CONFIG_H_
- /*---- Includes ----*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*---- Typedefs ----*/
- /*---- Enumerations ----*/
- /*---- Structures ----*/
- /*---- Macros ----*/
- #define TILE_COUNT 8
- #define LEVEL_WIDTH 1980
- #define LEVEL_HEIGHT 1080
- #define GROUND_LEVEL 1000
- #define PLAYER1_Y_START_POSITION 700
- #define PLAYER2_Y_START_POSITION 1280
- #define MIN_CAMERA_WINDOW_WIDTH 950
- #ifdef __cplusplus
- } //extern "C"
- #endif
- #endif /* _DEMO_LEVEL_CONFIG_H_ */
|