Re3/src/audio/DMAudio.h

13 lines
243 B
C
Raw Normal View History

2019-05-18 06:39:39 -04:00
#pragma once
class CEntity;
class cDMAudio
{
public:
2019-05-31 05:44:43 -04:00
void Service(void);
2019-05-19 15:28:10 -04:00
void ReportCollision(CEntity *A, CEntity *B, uint8 surfA, uint8 surfB, float impulse, float speed);
2019-05-29 14:02:58 -04:00
void ResetTimers(UInt32 timerval);
2019-05-18 06:39:39 -04:00
};
2019-05-19 15:28:10 -04:00
extern cDMAudio &DMAudio;