diff --git a/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.cpp b/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.cpp index 997ed47..1ea6410 100644 --- a/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.cpp +++ b/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.cpp @@ -28,4 +28,8 @@ void UInteractableEnvironmentObject::TickComponent(float DeltaTime, ELevelTick T } +void UInteractableEnvironmentObject::OnInteract() +{ +} + diff --git a/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.h b/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.h index 0d4f20d..c650652 100644 --- a/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.h +++ b/Source/the_twilight_abyss/InteractableEnvironment/InteractableEnvironmentObject.h @@ -28,5 +28,5 @@ public: bool bInteractable = false; UFUNCTION(Blueprintcallable) - virtual + virtual void OnInteract(); };