LeviLamina
Loading...
Searching...
No Matches
IPlayerTickProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Dimension;
8class EntityContext;
9class Player;
10class ServerPlayer;
11struct Tick;
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~IPlayerTickProxy() = default;
20
21 // vIndex: 1
22 virtual void preReplicationTick(::ServerPlayer&, ::Tick const&, ::EntityContext&) = 0;
23
24 // vIndex: 2
25 virtual void playerTick(::Player&, ::Tick const&) = 0;
26
27 // vIndex: 3
28 virtual void clearDimensionPlayerReplicationList(::Dimension&) = 0;
29
30 // vIndex: 4
31 virtual void processDimensionPlayerReplication(::Dimension&) = 0;
32
33 // vIndex: 5
34 virtual void postReplicationtick(::ServerPlayer&, ::Tick const&) = 0;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48};
Definition Dimension.h:83
Definition EntityContext.h:16
Definition IPlayerTickProxy.h:14
Definition Player.h:119
Definition ServerPlayer.h:64
Definition Tick.h:5