LeviLamina
Loading...
Searching...
No Matches
SoundParameter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct SoundParameter {
6public:
7 // member variables
8 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 SoundParameter& operator=(SoundParameter const&);
17 SoundParameter(SoundParameter const&);
18 SoundParameter();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23#ifdef LL_PLAT_C
24 MCNAPI ~SoundParameter();
25#endif
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCNAPI void $dtor();
33#endif
34 // NOLINTEND
35};
Definition Alias.h:14