summaryrefslogtreecommitdiffstats
path: root/src/include/game/init.h
blob: 33b17ed043a2e748b6a945cb8c3d0f26f6f8549a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INIT_H
#define INIT_H

extern void initSubsystems(int argc, const char *argv[]);
extern void initScripting(void);
extern void initConfiguration(int argc, const char *argv[]);
extern void initVideo(void);
extern void initAudio(void);
extern void initInput(void);
extern void initGame(void);

/* platform stuff */

extern void videoInit(void);
extern void audioInit(void);
extern void inputInit(void);
#endif