LeviLamina
Loading...
Searching...
No Matches
NetworkEnableDisableListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // NetworkEnableDisableListener inner types define
8 enum class State : int {
9 Enabled = 0,
10 Disabled = 1,
11 Uninitialized = 2,
12 };
13
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
32
33 // vIndex: 1
34 virtual void _onDisable() = 0;
35
36 // vIndex: 2
37 virtual void _onEnable() = 0;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCAPI static void** $vftable();
56 // NOLINTEND
57};
Definition NetworkEnableDisableListener.h:5
Definition Alias.h:14