LeviLamina
Loading...
Searching...
No Matches
GameOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class LevelData;
8// clang-format on
9
10namespace Editor {
11
13public:
14 // member variables
15 // NOLINTBEGIN
56 // NOLINTEND
57
58public:
59 // prevent constructor by default
60 GameOptions& operator=(GameOptions const&);
62
63public:
64 // member functions
65 // NOLINTBEGIN
67
68 MCAPI void applyToLevelData(::LevelData& levelData) const;
69
70 MCAPI ::Editor::GameOptions& operator=(::Editor::GameOptions&&);
71
72 MCAPI ~GameOptions();
73 // NOLINTEND
74
75public:
76 // constructor thunks
77 // NOLINTBEGIN
78 MCAPI void* $ctor(::Editor::GameOptions const&);
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCAPI void $dtor();
85 // NOLINTEND
86};
87
88} // namespace Editor
Definition GameOptions.h:12
Definition LevelData.h:48
Definition Alias.h:14