mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
19 lines
328 B
C
19 lines
328 B
C
#pragma once
|
|
|
|
|
|
#ifndef PS2LOWSFX_H
|
|
#define PS2LOWSFX_H
|
|
|
|
#include "export.h"
|
|
#include "vector.h"
|
|
|
|
EXPORT void SFX_PlayPos(u32, CVector*, i32);
|
|
EXPORT void SFX_LevelStart(void);
|
|
EXPORT void SFX_SetReverbType(unsigned char);
|
|
EXPORT void SFX_ReverbOff(void);
|
|
EXPORT void SFX_Stop(u32);
|
|
EXPORT void SFX_Play(u32, i16, i32);
|
|
|
|
#endif
|
|
|