comparison: src/demo.h
src/demo.h
- changeset 10
- bc1414343e19
- parent 6
- 67b6ef6917ba
- child 13
- 9bdddd2ccde6
equal
deleted
inserted
replaced
1 #ifndef DEMO_H |
1 #ifndef DEMO_H |
2 #define DEMO_H |
2 #define DEMO_H |
|
3 |
3 #include "types.h" |
4 #include "types.h" |
4 |
5 |
5 enum { |
6 enum { |
6 DemoLength, |
7 DemoLength, |
7 DemoVersion, |
8 DemoVersion, |
14 DemoTaunt, |
15 DemoTaunt, |
15 DemoEnd, |
16 DemoEnd, |
16 DemoWads |
17 DemoWads |
17 }; |
18 }; |
18 |
19 |
19 int launchDemo( str path ); |
20 struct VersionInfo { |
|
21 str shortVersion; |
|
22 str versionString; |
|
23 bool release; |
|
24 }; |
|
25 |
|
26 int launchDemo (str path); |
20 |
27 |
21 #endif // DEMO_H |
28 #endif // DEMO_H |