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 virtual ~IIslandCore() = default;
17
18 virtual ushort getId() = 0;
19
20 virtual bool start() = 0;
21
22 virtual bool suspend() = 0;
23
24 virtual bool resume() = 0;
25
26 virtual bool stop() = 0;
27
28 virtual void mainUpdate() = 0;
29
30 virtual void processActivationArguments(::Bedrock::ActivationArguments const& args) = 0;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
39
40} // namespace Bedrock
Definition ActivationArguments.h:7
Definition IIslandCore.h:12