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