LeviLamina
Loading...
Searching...
No Matches
ActorEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/block_events/BlockEventBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class BlockPos;
12class BlockSource;
13// clang-format on
14
15namespace BlockEvents {
16
17class ActorEvent : public ::BlockEvents::BlockEventBase {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::Actor&> mEntity;
22 ::ll::TypedStorage<8, 32, ::std::string const> mName;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ActorEvent& operator=(ActorEvent const&);
28 ActorEvent(ActorEvent const&);
29 ActorEvent();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ::BlockSource const& getBlockSource() const /*override*/;
35
36 virtual ~ActorEvent() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI ActorEvent(::BlockPos pos, ::Actor& entity, ::std::string const& name);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCFOLD void* $ctor(::BlockPos pos, ::Actor& entity, ::std::string const& name);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCFOLD void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCFOLD ::BlockSource const& $getBlockSource() const;
61
62
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
71
72} // namespace BlockEvents
Definition Actor.h:113
static MCAPI void ** $vftable()
Definition BlockEventBase.h:16
Definition BlockPos.h:17
Definition BlockSource.h:71