DRG-Femboy-Voice/Source/FSD/Private/ActivationObject.cpp
2025-04-15 12:39:31 -07:00

11 lines
302 B
C++
Executable file

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