LeviLamina
Loading...
Searching...
No Matches
ISparseContainerSetListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Container;
8class ItemStack;
9// clang-format on
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~ISparseContainerSetListener() = default;
16
17 virtual void preSetItem(::Container*, int, bool, ::ItemStack*) = 0;
18
19 virtual bool postSetItem(::Container*, ::ItemStack&) = 0;
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27};
Definition Container.h:33
Definition ISparseContainerSetListener.h:11
Definition ItemStack.h:26