mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
13 lines
462 B
C++
13 lines
462 B
C++
#include "FortAthenaMutator_Bots.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
AFortPlayerPawnAthena* AFortAthenaMutator_Bots::SpawnBot(TSubclassOf<AFortPlayerPawnAthena> BotPawnClass, const AActor* InSpawnLocator, const FVector InSpawnLocation, const FRotator InSpawnRotation, const bool bSnapToGround) {
|
|
return NULL;
|
|
}
|
|
|
|
AFortAthenaMutator_Bots::AFortAthenaMutator_Bots() {
|
|
this->bBotHostileToHumanPlayersOnly = true;
|
|
this->ServerBotManagerClass = NULL;
|
|
}
|
|
|