2014-02-25 11:04:16 +01:00
|
|
|
/*
|
|
|
|
Copyright 2014 Michele "King_DuckZ" Santullo
|
|
|
|
|
|
|
|
This file is part of CloonelJump.
|
|
|
|
|
|
|
|
CloonelJump 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.
|
|
|
|
|
|
|
|
CloonelJump 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 CloonelJump. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-01-10 00:04:39 +01:00
|
|
|
#ifndef id5FC1D6EEF9DF41E790068FBC6753035F
|
|
|
|
#define id5FC1D6EEF9DF41E790068FBC6753035F
|
|
|
|
|
|
|
|
#define GameName "@PROJECT_NAME@"
|
2014-08-03 15:13:54 +02:00
|
|
|
#define GameVersionMinor 12
|
2014-01-10 00:04:39 +01:00
|
|
|
#define GameVersionMajor 0
|
|
|
|
|
2014-03-06 11:43:28 +01:00
|
|
|
#define REFERENCE_WIDTH 480
|
|
|
|
#define REFERENCE_HEIGHT 600
|
|
|
|
#define DEF_WIN_WIDTH REFERENCE_WIDTH
|
|
|
|
#define DEF_WIN_HEIGHT REFERENCE_HEIGHT
|
2014-03-28 10:50:33 +01:00
|
|
|
#define DEF_RANDOM_SEED 1984
|
2014-07-30 13:46:50 +02:00
|
|
|
#define MAX_PLATFORMS_ON_SCREEN 24
|
2014-07-31 11:20:50 +02:00
|
|
|
#define REFERENCE_PLATFORM_WIDTH 104
|
|
|
|
#define REFERENCE_PLATFORM_HEIGHT 25
|
2014-08-03 15:13:54 +02:00
|
|
|
#define REFERENCE_CHARA_WIDTH 55
|
|
|
|
#define REFERENCE_CHARA_HEIGHT 70
|
2014-02-08 20:25:30 +01:00
|
|
|
|
2014-07-16 23:42:37 +02:00
|
|
|
/* TODO: make this path relative */
|
2014-02-12 00:27:55 +01:00
|
|
|
#define GAME_BASE_PATH "@CMAKE_SOURCE_DIR@"
|
|
|
|
|
2014-01-10 00:04:39 +01:00
|
|
|
#endif
|