mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			C
		
	
	
	
	
	
#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
 |