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

13 lines
249 B
C++
Executable file

#include "BoolUserSettingAsset.h"
void UBoolUserSettingAsset::SetValue(bool InValue) {
}
bool UBoolUserSettingAsset::GetValue() const {
return false;
}
UBoolUserSettingAsset::UBoolUserSettingAsset() {
this->SettingDefaultValue = true;
}