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_C static ::Brightness const& INVALID();
23
24 MCAPI static ::Brightness const& MAX();
25
26 MCAPI static ::Brightness const& MIN();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor(uchar&&);
33 // NOLINTEND
34};