Files
funnygame/public/level.h
2025-05-25 23:37:40 +03:00

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