LeviLamina
Loading...
Searching...
No Matches
ActorSkeletalAnimationPtr.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
13class HashedString;
14// clang-format on
15
16class ActorSkeletalAnimationPtr {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::ActorAnimationInfo>> mActorAnimationInfoPtr;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ActorSkeletalAnimationPtr();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI ActorSkeletalAnimationPtr(
31 ::Bedrock::NotNullNonOwnerPtr<::ActorAnimationGroup> const& animationGroup,
32 ::HashedString const& name
33 );
34
35#ifdef LL_PLAT_C
36 MCFOLD ::ActorSkeletalAnimation* get();
37#endif
38
39 MCFOLD bool isNull() const;
40
41 MCAPI ~ActorSkeletalAnimationPtr();
42 // NOLINTEND
43
44public:
45 // static variables
46 // NOLINTBEGIN
47 MCAPI static ::ActorSkeletalAnimationPtr const& NONE();
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void*
54 $ctor(::Bedrock::NotNullNonOwnerPtr<::ActorAnimationGroup> const& animationGroup, ::HashedString const& name);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCFOLD void $dtor();
61 // NOLINTEND
62};
Definition ActorAnimationGroup.h:26
Definition ActorAnimationInfo.h:13
Definition ActorSkeletalAnimation.h:18
Definition HashedString.h:5