LeviLamina
Loading...
Searching...
No Matches
ScriptBlockInventoryComponentContainer.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
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~ScriptBlockInventoryComponentContainer() /*override*/ = default;
38
39 // vIndex: 2
40 virtual ::Scripting::Result_deprecated<int> getEmptySlotsCount() const /*override*/;
41
42 // vIndex: 13
43 virtual ::Container* _tryGetContainer() const /*override*/;
44
45 // vIndex: 14
46 virtual ::ItemContext _getItemContext(int slot) const /*override*/;
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCAPI static ::Scripting::ClassBindingBuilder<::ScriptModuleMinecraft::ScriptBlockInventoryComponentContainer>
53 bindV010();
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59
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 MCAPI ::ItemContext $_getItemContext(int slot) const;
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCAPI static void** $vftable();
76 // NOLINTEND
77};
78
79} // namespace ScriptModuleMinecraft
Definition Container.h:30
Definition ItemContext.h:16
Definition ScriptBlockInventoryComponentContainer.h:18
Definition ScriptContainer.h:23
Definition Alias.h:14