LeviLamina
Loading...
Searching...
No Matches
ApplicationInit.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7class ApplicationInit {
8public:
9 // ApplicationInit inner types declare
10 // clang-format off
11 struct Objects;
12 // clang-format on
13
14 // ApplicationInit inner types define
15 struct Objects {
16 public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24 public:
25 // prevent constructor by default
26 Objects& operator=(Objects const&);
27 Objects(Objects const&);
28 Objects();
29
30 public:
31 // member functions
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36 public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI_C void $dtor();
40 // NOLINTEND
41 };
42
43public:
44 // member variables
45 // NOLINTBEGIN
49 // NOLINTEND
50
51public:
52 // prevent constructor by default
53 ApplicationInit& operator=(ApplicationInit const&);
54 ApplicationInit(ApplicationInit const&);
55 ApplicationInit();
56
57public:
58 // member functions
59 // NOLINTBEGIN
60 MCNAPI_C void run();
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCNAPI_C void $dtor();
67 // NOLINTEND
68};
69
70} // namespace Bedrock
Definition ApplicationInit.h:15
Definition Alias.h:14