mirror of
https://github.com/halpz/re3.git
synced 2025-01-25 07:00:59 +00:00
12 lines
222 B
C++
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;
|