[go: up one dir, main page]

Menu

[r19]: / main.h  Maximize  Restore  History

Download this file

37 lines (27 with data), 686 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _MAIN_H_
#define _MAIN_H_
#include <irrlicht.h>
#include <driverChoice.h>
using namespace irr;
using namespace core;
using namespace scene;
using namespace video;
using namespace io;
using namespace gui;
#include <iostream>
#include <time.h>
using namespace std;
#define PROJECT_NAME "Colonization"
//TODO: In-game config menu and config file
#define CONFIG_KEY_SCREENSHOT KEY_F11
#define CONFIG_SCREENSHOT_EXT ".jpg"
//#define CONFIG_FULLSCREEN
#define CONFIG_DEBUG_MODE
#include "CDeviceInfo.h"
#include "CLog.h"
#include "CSettings.h"
#include "CObjLoader.h"
#include "CMapLoader.h"
#include "MainMenu.h"
#include "Game.h"
#endif