prime/include/Kyoto/Audio/CSfxManager.hpp
Luke Street 94e27faee8 Continued work on CActor
Former-commit-id: 09dfe946fce8e683eb302afd35e086c15b53c2ff
2022-08-15 00:51:06 -04:00

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