mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
0c17ec03a8
* some minor changes
24 lines
414 B
C++
24 lines
414 B
C++
#ifndef COBJINFOECTHANDLER_H
|
|
#define COBJINFOECTHANDLER_H
|
|
|
|
#include <vector>
|
|
|
|
struct DefObjInfo
|
|
{
|
|
std::string defName;
|
|
int priority;
|
|
int type, subtype;
|
|
int objType;
|
|
unsigned char visitMap[6];
|
|
unsigned char blockMap[6];
|
|
bool operator==(const std::string & por) const;
|
|
};
|
|
|
|
class CDefObjInfoHandler
|
|
{
|
|
public:
|
|
std::vector<DefObjInfo> objs;
|
|
void load();
|
|
};
|
|
|
|
#endif //COBJINFOECTHANDLER_H
|