LeviLamina
Loading...
Searching...
No Matches
IIslandCore.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Bedrock { class ActivationArguments; }
8// clang-format on
9
10namespace Bedrock {
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 // vIndex: 0
17 virtual ~IIslandCore();
18
19 // vIndex: 1
20 virtual ushort getId() = 0;
21
22 // vIndex: 2
23 virtual bool start() = 0;
24
25 // vIndex: 3
26 virtual bool suspend() = 0;
27
28 // vIndex: 4
29 virtual bool resume() = 0;
30
31 // vIndex: 5
32 virtual bool stop() = 0;
33
34 // vIndex: 6
35 virtual void mainUpdate() = 0;
36
37 // vIndex: 7
38 virtual void processActivationArguments(::Bedrock::ActivationArguments const& args) = 0;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCFOLD void $dtor();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
59
60} // namespace Bedrock
Definition ActivationArguments.h:7
Definition IIslandCore.h:12