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