Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/level_table.h
7854 views
1
#ifndef LEVEL_TABLE_H
2
#define LEVEL_TABLE_H
3
4
// For LEVEL_NAME defines, see level_defines.h.
5
// Please include this file if you want to use them.
6
7
#define STUB_LEVEL(_0, levelenum, _2, _3, _4, _5, _6, _7, _8) levelenum,
8
#define DEFINE_LEVEL(_0, levelenum, _2, _3, _4, _5, _6, _7, _8, _9, _10) levelenum,
9
10
enum LevelNum
11
{
12
LEVEL_NONE,
13
#include "levels/level_defines.h"
14
LEVEL_COUNT,
15
LEVEL_MAX = LEVEL_COUNT - 1,
16
LEVEL_MIN = LEVEL_NONE + 1
17
};
18
19
#undef STUB_LEVEL
20
#undef DEFINE_LEVEL
21
22
#endif // LEVEL_TABLE_H
23
24