mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 00:39:00 +00:00
10 lines
185 B
C++
10 lines
185 B
C++
#pragma once
|
|
|
|
class CEntity;
|
|
|
|
class cDMAudio
|
|
{
|
|
public:
|
|
void ReportCollision(CEntity *A, CEntity *B, uint8 surfA, uint8 surfB, float impulse, float speed);
|
|
};
|
|
extern cDMAudio &DMAudio;
|