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

17 lines
377 B
C++
Executable file

#include "Gem.h"
#include "CarriableInstantUsable.h"
void AGem::SetHasBeenReleased(bool NewHasBeenReleased) {
}
bool AGem::GetHasBeenReleased() const {
return false;
}
AGem::AGem() {
this->Usable = CreateDefaultSubobject<UCarriableInstantUsable>(TEXT("Usable"));
this->ResourceType = NULL;
this->ResourceAmount = 1.00f;
this->hasBeenReleased = false;
}