LeviLamina
Loading...
Searching...
No Matches
ThemePalette.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class HashedString;
8namespace mce { class Color; }
9// clang-format on
10
11namespace Editor::Settings {
12
13struct ThemePalette {
14public:
15 // member variables
16 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ThemePalette();
27
28public:
29 // member functions
30 // NOLINTBEGIN
32
33 MCNAPI ::Editor::Settings::ThemePalette& operator=(::Editor::Settings::ThemePalette&&);
34
35 MCNAPI ::Editor::Settings::ThemePalette& operator=(::Editor::Settings::ThemePalette const&);
36
37 MCNAPI ~ThemePalette();
38 // NOLINTEND
39
40public:
41 // static variables
42 // NOLINTBEGIN
43 MCNAPI static ::HashedString const& DARK_THEME_ID();
44
45 MCNAPI static ::HashedString const& HIGH_CONTRAST_THEME_ID();
46
47 MCNAPI static ::HashedString const& LIGHT_THEME_ID();
48
49 MCNAPI static ::HashedString const& REDSTONE_THEME_ID();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63};
64
65} // namespace Editor::Settings
Definition HashedString.h:5
Definition Color.h:13
Definition ThemePalette.h:13
static MCAPI ::HashedString const & LIGHT_THEME_ID()
MCAPI ThemePalette(::Editor::Settings::ThemePalette const &)
MCAPI::Editor::Settings::ThemePalette & operator=(::Editor::Settings::ThemePalette const &)
MCAPI::Editor::Settings::ThemePalette & operator=(::Editor::Settings::ThemePalette &&)
MCAPI void * $ctor(::Editor::Settings::ThemePalette const &)
static MCAPI ::HashedString const & REDSTONE_THEME_ID()
static MCAPI ::HashedString const & HIGH_CONTRAST_THEME_ID()
static MCAPI ::HashedString const & DARK_THEME_ID()
Definition Alias.h:14