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/world/level/IAddActorEntityProxy.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual void initializeActor(::Actor& actor) /*override*/;
33
34 // vIndex: 2
35 virtual void reloadActor(::Actor& actor) /*override*/;
36
37 // vIndex: 0
38 virtual ~AddActorEntityProxy() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCNAPI void $initializeActor(::Actor& actor);
45
46 MCNAPI void $reloadActor(::Actor& actor);
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
Definition Actor.h:103
Definition AddActorEntityProxy.h:13
MCAPI void $initializeActor(::Actor &actor)
static MCAPI void ** $vftable()
MCAPI void $reloadActor(::Actor &actor)
Definition IAddActorEntityProxy.h:10
Definition Alias.h:14