LeviLamina
Loading...
Searching...
No Matches
ExplosionStartedEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/game_refs/WeakRef.h"
7#include "mc/world/level/BlockPos.h"
8
9// auto generated forward declare list
10// clang-format off
11class Dimension;
12class EntityContext;
13// clang-format on
14
15struct ExplosionStartedEvent {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 64, ::std::unordered_set<::BlockPos>> mBlocks;
20 ::ll::TypedStorage<8, 8, ::Dimension&> mDimension;
21 ::ll::TypedStorage<8, 24, ::WeakRef<::EntityContext>> mSource;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ExplosionStartedEvent& operator=(ExplosionStartedEvent const&);
27 ExplosionStartedEvent();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ExplosionStartedEvent(::ExplosionStartedEvent const&);
33
34 MCAPI ~ExplosionStartedEvent();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(::ExplosionStartedEvent const&);
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
Definition Dimension.h:85
Definition EntityContext.h:16