LeviLamina
Loading...
Searching...
No Matches
SystemInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs/systems/Dependencies.h"
7
8// auto generated forward declare list
9// clang-format off
10struct ComponentInfo;
11// clang-format on
12
13struct SystemInfo {
14public:
15 // SystemInfo inner types define
16 using GenerateComponentInfoVectorFunction = ::std::vector<::ComponentInfo> (*)();
17
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::std::string mName;
22 uchar mDisplayCategoryIndex;
23 ::Dependencies mDependencies;
24 ::ll::TypedStorage<8, 8, ::std::vector<::ComponentInfo> (*)()> mGenerateDetailedInfo;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 SystemInfo& operator=(SystemInfo const&);
30 SystemInfo();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI SystemInfo(::SystemInfo const&);
36
37 MCAPI ~SystemInfo();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::SystemInfo const&);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
Definition ComponentInfo.h:5
Definition Dependencies.h:5