LeviLamina
Loading...
Searching...
No Matches
PlayerSleepManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 PlayerSleepManager& operator=(PlayerSleepManager const&);
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~PlayerSleepManager();
24
25 // vIndex: 1
26 virtual void updateSleepingPlayerList();
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32 MCAPI void $dtor();
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCFOLD void $updateSleepingPlayerList();
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCAPI static void** $vftable();
45 // NOLINTEND
46};
Definition PlayerSleepManager.h:5
Definition Alias.h:14