LeviLamina
Loading...
Searching...
No Matches
GraphicsProps.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Settings {
6
7struct GraphicsProps {
8public:
9 // member variables
10 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 GraphicsProps& operator=(GraphicsProps const&);
27 GraphicsProps(GraphicsProps const&);
28 GraphicsProps();
29};
30
31} // namespace Editor::Settings
Definition Alias.h:14