LeviLamina
Loading...
Searching...
No Matches
ClientActorManagerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/ActorManagerProxy.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
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 1
30 virtual void initializeActor(::Actor& actor) /*override*/;
31
32 // vIndex: 2
33 virtual bool validate(::Actor const& actor) /*override*/;
34
35 // vIndex: 3
36 virtual void addActor(::Actor& actor) /*override*/;
37
38 // vIndex: 5
39 virtual void removeActorInLevelChunk(::Actor const&) /*override*/;
40
41 // vIndex: 6
42 virtual void deleteActorFromWorldInLevelChunk(::Actor const&) /*override*/;
43
44 // vIndex: 0
45 virtual ~ClientActorManagerProxy() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI void $initializeActor(::Actor& actor);
58
59 MCAPI bool $validate(::Actor const& actor);
60
61 MCAPI void $addActor(::Actor& actor);
62
63 MCFOLD void $removeActorInLevelChunk(::Actor const&);
64
65 MCFOLD void $deleteActorFromWorldInLevelChunk(::Actor const&);
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73};
Definition ActorManagerProxy.h:13
Definition Actor.h:104
Definition ClientActorManagerProxy.h:13
Definition Alias.h:14