mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
26 lines
570 B
C++
26 lines
570 B
C++
#include "FortGameplayAbility_AIPortal.h"
|
|
|
|
void UFortGameplayAbility_AIPortal::ModifyCollisions() {
|
|
}
|
|
|
|
bool UFortGameplayAbility_AIPortal::HasPortalOutPoint() const {
|
|
return false;
|
|
}
|
|
|
|
FVector UFortGameplayAbility_AIPortal::GetPortalOutPoint() const {
|
|
return FVector{};
|
|
}
|
|
|
|
FVector UFortGameplayAbility_AIPortal::GetPortalInPoint() const {
|
|
return FVector{};
|
|
}
|
|
|
|
ABuildingSMActor* UFortGameplayAbility_AIPortal::GetPortalBuilding() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortGameplayAbility_AIPortal::UFortGameplayAbility_AIPortal() {
|
|
this->PortalLifespan = 4.00f;
|
|
}
|
|
|