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