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;
12class WeakEntityRef;
13namespace Scripting { class WeakLifetimeScope; }
14namespace Scripting { struct ClassBinding; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
19class ScriptPlayerInventoryComponentContainer : public ::ScriptModuleMinecraft::ScriptInventoryComponentContainer {
20public:
21 // prevent constructor by default
22 ScriptPlayerInventoryComponentContainer();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~ScriptPlayerInventoryComponentContainer() /*override*/ = default;
28
29 virtual ::Container* _tryGetContainer() const /*override*/;
30
31 virtual ::ItemContext _getItemContext(int slot) const /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ScriptPlayerInventoryComponentContainer(
38 ::WeakEntityRef const& entityRef,
40 );
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCAPI static ::Scripting::ClassBinding bindV010();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::WeakEntityRef const& entityRef, ::Scripting::WeakLifetimeScope const& scope);
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCAPI ::Container* $_tryGetContainer() const;
59
60 MCFOLD ::ItemContext $_getItemContext(int slot) const;
61
62
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
71
72} // namespace ScriptModuleMinecraft
Definition Container.h:34
Definition ItemContext.h:23
Definition ScriptInventoryComponentContainer.h:20
Definition WeakLifetimeScope.h:14
Definition WeakEntityRef.h:14
Definition ClassBinding.h:19