LeviLamina
Loading...
Searching...
No Matches
LevelComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ILevel;
8// clang-format on
9
10class LevelComponent {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ILevel>> mLevel;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 LevelComponent& operator=(LevelComponent const&);
20 LevelComponent(LevelComponent const&);
21 LevelComponent();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI explicit LevelComponent(::std::unique_ptr<::ILevel> level);
27
28 MCAPI LevelComponent(::LevelComponent&& other);
29
30 MCFOLD ::ILevel const& getLevel() const;
31
32 MCFOLD ::ILevel& getLevel();
33
34 MCFOLD ::LevelComponent& operator=(::LevelComponent&& other);
35
36 MCAPI ~LevelComponent();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCFOLD void* $ctor(::std::unique_ptr<::ILevel> level);
43
44 MCFOLD void* $ctor(::LevelComponent&& other);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52};
Definition ILevel.h:219