mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
5222be8d94
* new folder structure
13 lines
313 B
C++
13 lines
313 B
C++
#ifndef CSEMILODHANDLER_H
|
|
#define CSEMILODHANDLER_H
|
|
|
|
#include "CSemiDefHandler.h"
|
|
class CSemiLodHandler
|
|
{
|
|
public:
|
|
std::string ourName; // name of our lod
|
|
void openLod(std::string path);
|
|
CSemiDefHandler * giveDef(std::string name, int dist=1); //loads def from our lod
|
|
};
|
|
|
|
#endif //CSEMILODHANDLER_H
|