mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
22 lines
356 B
C++
22 lines
356 B
C++
#ifndef COBJINFOECTHANDLER_H
|
|
#define COBJINFOECTHANDLER_H
|
|
|
|
#include <vector>
|
|
|
|
struct DefObjInfo
|
|
{
|
|
std::string defName;
|
|
int priority;
|
|
int type, subtype;
|
|
int objType;
|
|
bool operator==(const std::string & por) const;
|
|
};
|
|
|
|
class CDefObjInfoHandler
|
|
{
|
|
public:
|
|
std::vector<DefObjInfo> objs;
|
|
void load();
|
|
};
|
|
|
|
#endif //COBJINFOECTHANDLER_H
|