added basic support for native Boulder Dash game engine code
[rocksndiamonds.git] / src / game_bd / export.h
1 #ifndef GAME_BD_EXPORT_H
2 #define GAME_BD_EXPORT_H
3
4 // ============================================================================
5 // functions and definitions exported from game_bd to main program
6 // ============================================================================
7
8 // ----------------------------------------------------------------------------
9 // constant definitions
10 // ----------------------------------------------------------------------------
11
12 // ...
13
14
15 // ----------------------------------------------------------------------------
16 // data structure definitions
17 // ----------------------------------------------------------------------------
18
19 struct GameInfo_BD
20 {
21 };
22
23 struct LevelInfo_BD
24 {
25 };
26
27 struct EngineSnapshotInfo_BD
28 {
29 };
30
31
32 // ----------------------------------------------------------------------------
33 // exported functions
34 // ----------------------------------------------------------------------------
35
36 extern struct GameInfo_BD game_bd;
37 extern struct LevelInfo_BD native_bd_level;
38 extern struct EngineSnapshotInfo_BD engine_snapshot_bd;
39
40 void setLevelInfoToDefaults_BD(void);
41
42 #endif  // GAME_BD_EXPORT_H