-
Notifications
You must be signed in to change notification settings - Fork 59
/
global.h
60 lines (49 loc) · 1.05 KB
/
global.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
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef __GLOBAL__H
#define __GLOBAL__H
//Version
#define VER "Alpha 2"
#define OMTITLE "OpenMugen"
#include <SDL.h>
//SDL_GFX libery
//standart include
#include <memory.h>
#include <stdio.h>
#include <stdarg.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include <math.h>
#ifdef __linux__
#define strcmpi strcasecmp
#endif
//using namespace std;
//used class
class CPlayer;
class CVirtualMachine;
class CGameTimer;
#include "define.h"
#include "structs.h"
#include "MemManager.h"
//Nate Pendeltons Tokenizer
#include "tokenizer.h"
#include "CmdManager.h"
#include "scale2x.h"
#include "Timer.h"
#include "SDL_framerate.h"
#include "VideoSystem.h"
#include "SDLManager.h"
#include "AirManager.h"
#include "SffManager.h"
#include "Stack.h"
#include "StateManager.h"
#include "ControllerExecuter.h"
#include "player.h"
#include "VM.h"
#include "StateParser.h"
#include "engine.h"
#include "game.h"
//functions
void PrintMessage(char *str,...);
void InitLogFile();
#endif