1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-01-25 07:00:59 +00:00
re3/src/audio/DMAudio.h
2019-05-29 21:02:58 +03:00

12 lines
222 B
C++

#pragma once
class CEntity;
class cDMAudio
{
public:
void ReportCollision(CEntity *A, CEntity *B, uint8 surfA, uint8 surfB, float impulse, float speed);
void ResetTimers(UInt32 timerval);
};
extern cDMAudio &DMAudio;