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
13public:
14 // prevent constructor by default
15 DynamicAmbientSound(DynamicAmbientSound const&);
16 DynamicAmbientSound();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI ::DynamicAmbientSound& operator=(::DynamicAmbientSound const&);
22
23 MCAPI ~DynamicAmbientSound();
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29 MCAPI void $dtor();
30 // NOLINTEND
31};
Definition Alias.h:14