LeviLamina
Loading...
Searching...
No Matches
AppIsland.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/islands/IIslandCore.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock { class ActivationArguments; }
11// clang-format on
12
13namespace Bedrock {
14
15class AppIsland : public ::Bedrock::IIslandCore {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 AppIsland& operator=(AppIsland const&);
25 AppIsland(AppIsland const&);
26 AppIsland();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_S
32 virtual ~AppIsland() /*override*/;
33#else // LL_PLAT_C
34 virtual ~AppIsland() /*override*/ = default;
35#endif
36
37 virtual ushort getId() /*override*/;
38
39 virtual bool start() /*override*/;
40
41 virtual bool suspend() /*override*/;
42
43 virtual bool resume() /*override*/;
44
45 virtual bool stop() /*override*/;
46
47 virtual void mainUpdate() /*override*/;
48
49 virtual void processActivationArguments(::Bedrock::ActivationArguments const& args) /*override*/;
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI ushort $getId();
62
63 MCNAPI bool $start();
64
65 MCNAPI bool $suspend();
66
67 MCNAPI bool $resume();
68
69 MCNAPI bool $stop();
70
71 MCNAPI void $mainUpdate();
72
74
75
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
84
85} // namespace Bedrock
Definition ActivationArguments.h:7
MCAPI void $dtor()
MCAPI void $processActivationArguments(::Bedrock::ActivationArguments const &args)
MCAPI ushort $getId()
MCAPI bool $resume()
MCAPI void $mainUpdate()
static MCAPI void ** $vftable()
MCAPI bool $start()
MCAPI bool $stop()
MCAPI bool $suspend()
Definition IIslandCore.h:12
Definition Alias.h:14