CDefObjInfoHandler.h 356 B

12345678910111213141516171819202122
  1. #ifndef COBJINFOECTHANDLER_H
  2. #define COBJINFOECTHANDLER_H
  3. #include <vector>
  4. struct DefObjInfo
  5. {
  6. std::string defName;
  7. int priority;
  8. int type, subtype;
  9. int objType;
  10. bool operator==(const std::string & por) const;
  11. };
  12. class CDefObjInfoHandler
  13. {
  14. public:
  15. std::vector<DefObjInfo> objs;
  16. void load();
  17. };
  18. #endif //COBJINFOECTHANDLER_H