You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
refresh 4
This commit is contained in:
22
include/level_table.h
Normal file
22
include/level_table.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef _LEVEL_TABLE_H
|
||||
#define _LEVEL_TABLE_H
|
||||
|
||||
// For LEVEL_NAME defines, see level_defines.h.
|
||||
// Please include this file if you want to use them.
|
||||
|
||||
#define STUB_LEVEL(_0, levelenum, _2, _3, _4, _5, _6, _7, _8) levelenum,
|
||||
#define DEFINE_LEVEL(_0, levelenum, _2, _3, _4, _5, _6, _7, _8, _9, _10) levelenum,
|
||||
|
||||
enum LevelNum
|
||||
{
|
||||
LEVEL_NONE,
|
||||
#include "levels/level_defines.h"
|
||||
LEVEL_COUNT,
|
||||
LEVEL_MAX = LEVEL_COUNT - 1,
|
||||
LEVEL_MIN = LEVEL_NONE + 1
|
||||
};
|
||||
|
||||
#undef STUB_LEVEL
|
||||
#undef DEFINE_LEVEL
|
||||
|
||||
#endif // _LEVEL_TABLE_H
|
||||
Reference in New Issue
Block a user