LeviLamina
Loading...
Searching...
No Matches
ScriptRGB.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/binding_type/InterfaceBindingBuilder.h"
7
8namespace ScriptModuleMinecraft {
9
10class ScriptRGB {
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 ScriptRGB& operator=(ScriptRGB const&);
20 ScriptRGB(ScriptRGB const&);
21 ScriptRGB();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 0
27 virtual ~ScriptRGB() = default;
28
29 // vIndex: 1
30 virtual bool isValid() const;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI bool operator==(::ScriptModuleMinecraft::ScriptRGB const& other) const;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static ::Scripting::InterfaceBindingBuilder<::ScriptModuleMinecraft::ScriptRGB> bind();
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI bool $isValid() const;
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace ScriptModuleMinecraft
Definition ScriptRGB.h:10
Definition Alias.h:14