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