LeviLamina
Loading...
Searching...
No Matches
ParticleEffectComponentRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class HashedString;
8namespace ParticleSystem { class EffectComponentBase; }
9// clang-format on
10
11namespace ParticleSystem {
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<
18 8,
19 64,
20 ::std::
21 unordered_map<::HashedString, ::std::function<::std::unique_ptr<::ParticleSystem::EffectComponentBase>()>>>
22 mComponentRegistry;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI void registerComponent(
29 ::HashedString const& name,
30 ::std::function<::std::unique_ptr<::ParticleSystem::EffectComponentBase>()> createFunc
31 );
32 // NOLINTEND
33};
34
35} // namespace ParticleSystem
Definition HashedString.h:5
Definition EffectComponentBase.h:7
Definition ParticleEffectComponentRegistry.h:7