LeviLamina
Loading...
Searching...
No Matches
Graphics.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Editor::Settings { struct GraphicsProps; }
8namespace cereal { struct ReflectionCtx; }
9// clang-format on
10
11namespace Editor::Settings {
12
13class Graphics {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 Graphics& operator=(Graphics const&);
24 Graphics(Graphics const&);
25 Graphics();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCNAPI void updateSettings(::Editor::Settings::GraphicsProps const& props, bool notifyUpdate);
31 // NOLINTEND
32
33public:
34 // static functions
35 // NOLINTBEGIN
36 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
37 // NOLINTEND
38};
39
40} // namespace Editor::Settings
Definition Graphics.h:13
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
MCAPI void updateSettings(::Editor::Settings::GraphicsProps const &props, bool notifyUpdate)
Definition GraphicsProps.h:7
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14