-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathApollo.h
47 lines (40 loc) · 1.2 KB
/
Apollo.h
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
37
38
39
40
41
42
43
44
45
46
47
#ifndef __apollo_h
#define __apollo_h
#ifdef WIN32
#define assert(x) { if (! ( x ) ) { printf("Assertion failure: %s\n\tFile: %s\n\tLine: %d\n", # x , __FILE__, __LINE__ ); abort(); } }
#undef SendMessage
#undef GetMessage //apparently, these are Windows directives
#endif
#include <SDL/SDL.h>
#include "Logging.h"
#include "Utilities/Colour.h"
#include "Utilities/Matrix2x3.h"
#include "Utilities/Vec2.h"
#include "Utilities/ResourceManager.h"
#include "Utilities/GameTime.h"
#include "Utilities/TestHarness.h"
#include "Utilities/MachinePower.h"
#include "Input.h"
#include "Modes/ModeManager.h"
#include "Graphics/Graphics.h"
#include "Net/Net.h"
#include "Scripting/Scripting.h"
#include "Scripting/Compile.h"
#include "Sound/Sound.h"
#include "Preferences.h"
#include "enetadapt.h"
extern "C"
{
extern void Init ();
extern void MainLoop ();
extern void Shutdown ();
}
#endif
/**
* @mainpage
* Contained within is the documentation for Apollo, the engine for Xsera.\n\n
* We will try to keep this documentation as up-to-date as possible, but this is
* no easy task. If you can make an improvement to the documentation, please
* contact us through the official Xsera repository at
* http://github.com/xsera/xsera
*/