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
19#ifdef LL_PLAT_S
20public:
21 // prevent constructor by default
22 ActorDefinitionPtr(ActorDefinitionPtr const&);
23 ActorDefinitionPtr();
24
25#else // LL_PLAT_C
26public:
27 // prevent constructor by default
28 ActorDefinitionPtr();
29
30#endif
31public:
32 // member functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCAPI ActorDefinitionPtr(::ActorDefinitionPtr const& rhs);
36#endif
37
38 MCAPI ::ActorDefinitionPtr& operator=(::ActorDefinitionPtr const& rhs);
39
40 MCAPI ~ActorDefinitionPtr();
41 // NOLINTEND
42
43public:
44 // static variables
45 // NOLINTBEGIN
46 MCAPI static ::ActorDefinitionPtr const& NONE();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCAPI void* $ctor(::ActorDefinitionPtr const& rhs);
54#endif
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCAPI void $dtor();
61 // NOLINTEND
62};
Definition ActorDefinitionGroup.h:27
Definition ActorDefinition.h:80