prime/include/Kyoto/Audio/CStreamAudioManager.hpp
Luke Street 329618c585 More main progress; tons of headers & stuff
Former-commit-id: a6e365791b35de8a1c056db8a4833150450c84d9
2022-09-13 00:28:02 -04:00

16 lines
233 B
C++

#ifndef _CSTREAMAUDIOMANAGER_HPP
#define _CSTREAMAUDIOMANAGER_HPP
#include "types.h"
class CStreamAudioManager {
public:
static void Update(f32 dt);
static void StopAll();
static void SetMusicVolume(u8);
private:
};
#endif