LeviLamina
Loading...
Searching...
No Matches
ScriptLootTableEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
7#include "mc/scripting/modules/minecraft/loot_tables/ScriptLootPoolEntry.h"
8
9// auto generated forward declare list
10// clang-format off
11class LootPoolEntry;
12class LootTableEntry;
13namespace ScriptModuleMinecraft { class ScriptLootTable; }
14namespace Scripting { struct ClassBinding; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
19class ScriptLootTableEntry : public ::ScriptModuleMinecraft::ScriptLootPoolEntry {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 8, ::LootTableEntry const&> mLootTableEntry;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ScriptLootTableEntry& operator=(ScriptLootTableEntry const&);
29 ScriptLootTableEntry(ScriptLootTableEntry const&);
30 ScriptLootTableEntry();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ::LootPoolEntry const& _getEntry() const /*override*/;
36
37 virtual ~ScriptLootTableEntry() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptLootTable> const getTable() const;
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCAPI static ::Scripting::ClassBinding bind();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCFOLD ::LootPoolEntry const& $_getEntry() const;
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
66
67} // namespace ScriptModuleMinecraft
Definition LootPoolEntry.h:14
Definition LootTableEntry.h:17
Definition ScriptLootPoolEntry.h:17
Definition ScriptLootTable.h:18
Definition ClassBinding.h:19