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