1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-10 11:08:31 +00:00
re3/src/audio/DMAudio.h

13 lines
243 B
C
Raw Normal View History

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