mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
16 lines
519 B
C++
16 lines
519 B
C++
#include "AthenaLayoutRequirementData.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
ABuildingLayoutRequirement* UAthenaLayoutRequirementData::SpawnMatchingLayoutRequirement(ABuildingSMActor* SourceActor, bool bMatchResourceType) {
|
|
return NULL;
|
|
}
|
|
|
|
bool UAthenaLayoutRequirementData::FindMatchingLayoutRequirementClass(ABuildingSMActor* BuildingActor, TSubclassOf<ABuildingSMActor>& MatchingClass) const {
|
|
return false;
|
|
}
|
|
|
|
UAthenaLayoutRequirementData::UAthenaLayoutRequirementData() {
|
|
this->BuildingClass = NULL;
|
|
}
|
|
|