mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
15 lines
346 B
C++
15 lines
346 B
C++
#include "FortCreativeOptions.h"
|
|
|
|
bool UFortCreativeOptions::IsVisibleOption(ESettingType SettingType) {
|
|
return false;
|
|
}
|
|
|
|
bool UFortCreativeOptions::GetVisibleOptionsForTab(ESettingTab TabType, TArray<ESettingType>& VisibleOptions) {
|
|
return false;
|
|
}
|
|
|
|
UFortCreativeOptions::UFortCreativeOptions() {
|
|
this->CurrentReleaseVersion = 0;
|
|
}
|
|
|