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