LeviLamina
Loading...
Searching...
No Matches
ContainerValidation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemStackBase;
8// clang-format on
9
11public:
12 // ContainerValidation inner types define
13 using AllowedItemInSlotDelegate = ::std::function<bool(int, ::ItemStackBase const&, int)>;
14
15 using AllowedItemToAddDelegate = ::std::function<bool(::ItemStackBase const&)>;
16
17 using AvailableSetCountDelegate = ::std::function<int(int, ::ItemStackBase const&)>;
18
19 using ValidSlotForContainerDelegate = ::std::function<bool(int)>;
20
21 using AllowedItemToRemoveDelegate = ::std::function<bool(::ItemStackBase const&)>;
22
23 using AllowedItemInContainerDelegate = ::std::function<bool(::ItemStackBase const&)>;
24};
Definition ItemStackBase.h:35
Definition ContainerValidation.h:10