1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

add banned objects to mapeditor

This commit is contained in:
Laserlicht
2025-07-09 22:18:55 +02:00
parent 5c20e2bec7
commit eaf1e11045
3 changed files with 113 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ struct DLL_LINKAGE CompoundMapObjectID
si32 primaryID;
si32 secondaryID;
CompoundMapObjectID() : primaryID(0), secondaryID(0) {}
CompoundMapObjectID(si32 primID, si32 secID) : primaryID(primID), secondaryID(secID) {};
bool operator<(const CompoundMapObjectID& other) const