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/script_core/runtime/scripting/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
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 24, ::WeakEntityRef> mEntityRef;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~ScriptInventoryComponentContainer() /*override*/ = default;
30
31 virtual ::Scripting::Result_deprecated<int> getEmptySlotsCount() const /*override*/;
32
33 virtual ::Container* _tryGetContainer() const /*override*/;
34
35 virtual ::ItemContext _getItemContext(int slot) const /*override*/;
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static ::Scripting::ClassBinding bindV010();
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCFOLD ::Scripting::Result_deprecated<int> $getEmptySlotsCount() const;
48
49 MCAPI ::Container* $_tryGetContainer() const;
50
51 MCFOLD ::ItemContext $_getItemContext(int slot) const;
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace ScriptModuleMinecraft
Definition Container.h:35
Definition ItemContext.h:23
Definition ScriptContainer.h:26
Definition ScriptInventoryComponentContainer.h:19
Definition ClassBinding.h:10