LeviLamina
Loading...
Searching...
No Matches
ScriptContainerRules.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8namespace Scripting { struct InterfaceBinding; }
9// clang-format on
10
11namespace ScriptModuleMinecraft {
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<1, 1, bool> mAllowNestedStorageItems;
18 ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor>> mBannedItemsDescriptor;
19 ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor>> mAllowedItemsDescriptor;
20 ::ll::TypedStorage<4, 8, ::std::optional<int>> mWeightLimit;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI ::std::vector<::std::string> _getAllowedItems() const;
27
28 MCAPI ::std::vector<::std::string> _getBannedItems() const;
29
30 MCAPI void _setAllowedItems(::std::vector<::std::string> const& allowedItems);
31
32 MCAPI void _setBannedItems(::std::vector<::std::string> const& bannedItems);
33
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static ::Scripting::InterfaceBinding bind();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
49
50} // namespace ScriptModuleMinecraft
Definition ItemDescriptor.h:25
Definition ScriptContainerRules.h:13
Definition InterfaceBinding.h:10