mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-14 10:31:20 +00:00
15 lines
227 B
C++
15 lines
227 B
C++
#ifndef _CSFXMANAGER_HPP
|
|
#define _CSFXMANAGER_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "Kyoto/Audio/CSfxHandle.hpp"
|
|
|
|
class CSfxManager {
|
|
public:
|
|
static void Update(f32 dt);
|
|
static void RemoveEmitter(CSfxHandle handle);
|
|
};
|
|
|
|
#endif
|