LeviLamina
Loading...
Searching...
No Matches
ParticleEffectInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace ParticleSystem { class ParticleEffect; }
11// clang-format on
12
13class ParticleEffectInfo : public ::std::enable_shared_from_this<::ParticleEffectInfo> {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 48, ::HashedString> mName;
18 ::ll::TypedStorage<8, 48, ::HashedString> mContainerName;
19 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::ParticleSystem::ParticleEffect>> mPtr;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI ::std::shared_ptr<::ParticleSystem::ParticleEffect> getEffectPtr();
26
27 MCAPI ~ParticleEffectInfo();
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCAPI void $dtor();
34 // NOLINTEND
35};
Definition ParticleEffectInfo.h:5
Definition ParticleEffect.h:7