LeviLamina
Loading...
Searching...
No Matches
AppLifecycleContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class AppLifecycleContext {
6public:
7 // member variables
8 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 AppLifecycleContext& operator=(AppLifecycleContext const&);
18 AppLifecycleContext(AppLifecycleContext const&);
19
20public:
21 // member functions
22 // NOLINTBEGIN
24
25#ifdef LL_PLAT_C
26 MCNAPI void setFocus(bool currentlyResumed);
27
28 MCNAPI void setHasGraphicsContext(bool hasGraphicsContext);
29#endif
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor();
36 // NOLINTEND
37};
MCAPI AppLifecycleContext()
MCAPI void * $ctor()
Definition Alias.h:14