LeviLamina
Loading...
Searching...
No Matches
ScriptLootItem.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;
12namespace ScriptModuleMinecraft { class ScriptItemType; }
13namespace ScriptModuleMinecraft { class ScriptLootItemFunction; }
14namespace Scripting { struct ClassBinding; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ScriptLootItem& operator=(ScriptLootItem const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 1
37 virtual ::LootPoolEntry const& _getEntry() const /*override*/;
38
39 // vIndex: 0
40 virtual ~ScriptLootItem() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCNAPI ::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptLootItemFunction>>
48
49 MCNAPI ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemType>>
50 getName() const;
51 // NOLINTEND
52
53public:
54 // static functions
55 // NOLINTBEGIN
56 MCNAPI static ::Scripting::ClassBinding bind();
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCNAPI ::LootPoolEntry const& $_getEntry() const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
71
72} // namespace ScriptModuleMinecraft
Definition LootPoolEntry.h:13
Definition ScriptLootItem.h:19
MCAPI::LootPoolEntry const & $_getEntry() const
static MCAPI ::Scripting::ClassBinding bind()
MCAPI ::std::optional<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptItemType > > getName() const
MCAPI ::std::vector<::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptLootItemFunction > > getFunctions()
Definition ScriptLootPoolEntry.h:16
Definition Alias.h:14