mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-26 03:52:01 +02:00
8 lines
215 B
C
8 lines
215 B
C
|
#include "CSemiDefHandler.h"
|
||
|
class CSemiLodHandler
|
||
|
{
|
||
|
public:
|
||
|
std::string ourName; // name of our lod
|
||
|
void openLod(std::string path);
|
||
|
CSemiDefHandler * giveDef(std::string name); //loads def from our lod
|
||
|
};
|