LeviLamina
Loading...
Searching...
No Matches
ILevelBlockDestroyerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockPos;
9class BlockSource;
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~ILevelBlockDestroyerProxy() = default;
18
19 virtual void sendEvents(::LevelEventManager&, ::BlockSource&, ::BlockPos const&, ::Block const&) = 0;
20
21 virtual void dropResources(::BlockSource&, ::BlockPos const&, ::Block const&) = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
Definition BlockPos.h:19
Definition BlockSource.h:68
Definition Block.h:43
Definition ILevelBlockDestroyerProxy.h:13
Definition LevelEventManager.h:23