1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-12-07 23:33:15 +02:00

cloned Nullkiller into Nullkiller2

This commit is contained in:
Mircea TheHonestCTO
2025-08-13 14:41:15 +02:00
parent a6df82c616
commit ffad6c6a43
249 changed files with 23306 additions and 377 deletions

View File

@@ -49,7 +49,7 @@ namespace Goals
specificObjects = true;
}
Goals::TGoalVec decompose(const Nullkiller * ai) const override;
Goals::TGoalVec decompose(const Nullkiller2 * ai) const override;
std::string toString() const override;
CaptureObjectsBehavior & ofType(int type)
@@ -70,7 +70,7 @@ namespace Goals
static Goals::TGoalVec getVisitGoals(
const std::vector<AIPath> & paths,
const Nullkiller * nullkiller,
const Nullkiller2 * nullkiller,
const CGObjectInstance * objToVisit = nullptr,
bool force = false);
@@ -79,7 +79,7 @@ namespace Goals
void decomposeObjects(
Goals::TGoalVec & result,
const std::vector<const CGObjectInstance *> & objs,
const Nullkiller * nullkiller) const;
const Nullkiller2 * nullkiller) const;
};
}