LeviLamina
Loading...
Searching...
No Matches
Brightness.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/NewType.h"
7
8struct Brightness : public ::NewType<uchar> {
9public:
10 // prevent constructor by default
11 Brightness();
12
13public:
14 // member functions
15 // NOLINTBEGIN
16 MCAPI explicit Brightness(uchar&&);
17 // NOLINTEND
18
19public:
20 // static variables
21 // NOLINTBEGIN
22 MCAPI static ::Brightness const& MAX();
23
24 MCAPI static ::Brightness const& MIN();
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCAPI void* $ctor(uchar&&);
31 // NOLINTEND
32};
Definition Brightness.h:8
Definition NewType.h:6