rocks_n_diamonds-1.0
[rocksndiamonds.git] / src / init.h
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  ©1995 Artsoft Development                               *
5 *        Holger Schemel                                    *
6 *        33659 Bielefeld-Senne                             *
7 *        Telefon: (0521) 493245                            *
8 *        eMail: aeglos@valinor.owl.de                      *
9 *               aeglos@uni-paderborn.de                    *
10 *               q99492@pbhrzx.uni-paderborn.de             *
11 *----------------------------------------------------------*
12 *  init.h                                                  *
13 ***********************************************************/
14
15 #ifndef INIT_H
16 #define INIT_H
17
18 #include "main.h"
19
20 void OpenAll(int, char **);
21 void InitLevelAndPlayerInfo(void);
22 void InitDisplay(int, char **);
23 void InitSound(void);
24 void InitSoundProcess(void);
25 void InitJoystick(void);
26 void InitWindow(int, char **);
27 void InitGfx(void);
28 void LoadGfx(int, struct PictureFile *);
29 void InitElementProperties(void);
30 void CloseAll();
31
32 #endif