Files
2024-01-21 00:41:14 +01:00

14 lines
301 B
C++

#include "BattleMapPawn.h"
void ABattleMapPawn::OnCompletedAllRequestedEvent() {
}
ABattleMapPawn::ABattleMapPawn() {
this->GroundMoveNodeClass = NULL;
this->AirMoveNodeClass = NULL;
this->GotKillNodeClass = NULL;
this->ZoneNodeClass = NULL;
this->TeamFlightNodeClass = NULL;
}