mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-22 01:13:28 +00:00
15 lines
199 B
C++
15 lines
199 B
C++
#ifndef _CSTREAMAUDIOMANAGER_HPP
|
|
#define _CSTREAMAUDIOMANAGER_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CStreamAudioManager {
|
|
public:
|
|
static void Update(f32 dt);
|
|
static void StopAll();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|