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