Pioneer
AmbientSounds.h
Go to the documentation of this file.
1 // Copyright © 2008-2023 Pioneer Developers. See AUTHORS.txt for details
2 // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3 
4 #ifndef AMBIENTSOUNDS_H
5 #define AMBIENTSOUNDS_H
6 
7 class AmbientSounds {
8 public:
9  static void Init();
10  static void Uninit();
11  static void Update();
12 
13 private:
14  static void UpdateForCamType();
15 };
16 
17 #endif /* AMBIENTSOUNDS_H */
Definition: AmbientSounds.h:7
static void Uninit()
Definition: AmbientSounds.cpp:72
static void Update()
Definition: AmbientSounds.cpp:77
static void Init()
Definition: AmbientSounds.cpp:67