LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerInventoryComponentContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/ScriptInventoryComponentContainer.h"
7
8// auto generated forward declare list
9// clang-format off
10class Container;
11class ItemContext;
12namespace Scripting { struct ClassBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
17class ScriptPlayerInventoryComponentContainer : public ::ScriptModuleMinecraft::ScriptInventoryComponentContainer {
18public:
19 // prevent constructor by default
20 ScriptPlayerInventoryComponentContainer(ScriptPlayerInventoryComponentContainer const&);
21 ScriptPlayerInventoryComponentContainer();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~ScriptPlayerInventoryComponentContainer() /*override*/;
27
28 virtual ::Container* _tryGetContainer() const /*override*/;
29
30 virtual ::ItemContext _getItemContext(int slot) const /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCFOLD ::ScriptModuleMinecraft::ScriptPlayerInventoryComponentContainer&
38 // NOLINTEND
39
40public:
41 // static functions
42 // NOLINTBEGIN
43 MCAPI static ::Scripting::ClassBinding bindV010();
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCFOLD void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::Container* $_tryGetContainer() const;
56
57 MCFOLD ::ItemContext $_getItemContext(int slot) const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
68
69} // namespace ScriptModuleMinecraft
Definition Container.h:33
Definition ItemContext.h:21
Definition ScriptInventoryComponentContainer.h:19
Definition ScriptPlayerInventoryComponentContainer.h:17
Definition ClassBinding.h:19