Added Stub for OnInteract Event

This commit is contained in:
Philip W 2023-01-06 13:55:38 +00:00
parent 6096d5a783
commit 320a74d4bb
2 changed files with 5 additions and 1 deletions

View File

@ -28,4 +28,8 @@ void UInteractableEnvironmentObject::TickComponent(float DeltaTime, ELevelTick T
} }
void UInteractableEnvironmentObject::OnInteract()
{
}

View File

@ -28,5 +28,5 @@ public:
bool bInteractable = false; bool bInteractable = false;
UFUNCTION(Blueprintcallable) UFUNCTION(Blueprintcallable)
virtual virtual void OnInteract();
}; };