summaryrefslogtreecommitdiffstats
path: root/src/include/game/init.h
blob: 9a8eabeae6621d8fef4236bdacda9c83c27ac400 (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, char *argv[]);
extern void initScripting(void);
extern void initConfiguration(int argc, 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