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