blob: 41a549b4aac121c80e48455315c4e177ed0a657b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* PARSEC HEADER: g_boot.h
*/
#ifndef _G_BOOT_H_
#define _G_BOOT_H_
// external functions
void StartupMessages();
int GameBoot();
int GameInit( int use_net );
#endif // _G_BOOT_H_
|