#include "ActivationObject.h" #include "SingleUsableComponent.h" void AActivationObject::OnUsedBy(APlayerCharacter* User, EInputKeys Key) { } AActivationObject::AActivationObject() { this->Usable = CreateDefaultSubobject(TEXT("Usable")); this->HasBeenUsed = false; }