mirror of
https://github.com/vcmi/vcmi.git
synced 2025-12-03 23:19:22 +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
|
||
|
|
};
|