LeviLamina
Loading...
Searching...
No Matches
AddActorEntityProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorRuntimeID.h"
7#include "mc/legacy/ActorUniqueID.h"
8#include "mc/world/level/IAddActorEntityProxy.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class Dimension;
14// clang-format on
15
16class AddActorEntityProxy : public ::IAddActorEntityProxy {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Dimension&> mDimension;
21 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mActorUniqueID;
22 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mActorRuntimeID;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 AddActorEntityProxy& operator=(AddActorEntityProxy const&);
28 AddActorEntityProxy(AddActorEntityProxy const&);
29 AddActorEntityProxy();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void initializeActor(::Actor& actor) /*override*/;
35
36 virtual void reloadActor(::Actor& actor) /*override*/;
37
38 virtual ~AddActorEntityProxy() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCAPI void $initializeActor(::Actor& actor);
45
46 MCAPI void $reloadActor(::Actor& actor);
47
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition Actor.h:105
static MCAPI void ** $vftable()
Definition Dimension.h:85
Definition IAddActorEntityProxy.h:10