13 lines
151 B
C++
13 lines
151 B
C++
#ifndef LEVEL_H
|
|
#define LEVEL_H
|
|
|
|
#include "tier0/platform.h"
|
|
|
|
interface ILevel
|
|
{
|
|
public:
|
|
static void LoadLevel( const char *szLevelName );
|
|
};
|
|
|
|
#endif
|