mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
20 lines
575 B
C++
20 lines
575 B
C++
#include "FortPawn_InteractablePawn.h"
|
|
|
|
void AFortPawn_InteractablePawn::BlueprintOnInteract_Implementation(const AFortPawn* InteractingPawn) {
|
|
}
|
|
|
|
void AFortPawn_InteractablePawn::BlueprintOnBeginInteract_Implementation() {
|
|
}
|
|
|
|
FText AFortPawn_InteractablePawn::BlueprintGetInteractionString_Implementation(const AFortPawn* InteractingPawn) const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
bool AFortPawn_InteractablePawn::BlueprintCanInteract_Implementation(const AFortPawn* InteractingPawn) const {
|
|
return false;
|
|
}
|
|
|
|
AFortPawn_InteractablePawn::AFortPawn_InteractablePawn() {
|
|
}
|
|
|