13 lines
249 B
C++
Executable file
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;
|
|
}
|
|
|