LeviLamina
Loading...
Searching...
No Matches
ActorInternalEvent.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 ActorInternalEvent : 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 ActorInternalEvent& operator=(ActorInternalEvent const&);
28 ActorInternalEvent(ActorInternalEvent const&);
29 ActorInternalEvent();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ::BlockSource const& getBlockSource() const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI ActorInternalEvent(::BlockPos pos, ::Actor& entity, ::std::string const& name);
41
42 MCFOLD ::Actor& getEntity() const;
43
44 MCFOLD ::std::string const& getName() const;
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCFOLD void* $ctor(::BlockPos pos, ::Actor& entity, ::std::string const& name);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCFOLD ::BlockSource const& $getBlockSource() const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
67
68} // namespace BlockEvents
Definition Actor.h:125
static MCAPI void ** $vftable()
Definition BlockEventBase.h:16
Definition BlockPos.h:21
Definition BlockSource.h:73