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/scripting/binding_type/ClassBindingBuilder.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;
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~ScriptInventoryComponentContainer() /*override*/ = default;
36
37 // vIndex: 2
38 virtual ::Scripting::Result_deprecated<int> getEmptySlotsCount() const /*override*/;
39
40 // vIndex: 13
41 virtual ::Container* _tryGetContainer() const /*override*/;
42
43 // vIndex: 14
44 virtual ::ItemContext _getItemContext(int slot) const /*override*/;
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static ::Scripting::ClassBindingBuilder<::ScriptModuleMinecraft::ScriptInventoryComponentContainer>
51 bindV010();
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCFOLD ::Scripting::Result_deprecated<int> $getEmptySlotsCount() const;
64
65 MCAPI ::Container* $_tryGetContainer() const;
66
67 MCFOLD ::ItemContext $_getItemContext(int slot) const;
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCAPI static void** $vftable();
74 // NOLINTEND
75};
76
77} // namespace ScriptModuleMinecraft
Definition Container.h:30
Definition ItemContext.h:16
Definition ScriptContainer.h:23
Definition ScriptInventoryComponentContainer.h:18
Definition Alias.h:14