mirror of
https://github.com/td512/re3.git
synced 2026-02-05 23:44:57 +00:00
10 lines
166 B
C++
10 lines
166 B
C++
#pragma once
|
|
|
|
class CEntity;
|
|
|
|
class cDMAudio
|
|
{
|
|
public:
|
|
static void ReportCollision(CEntity *A, CEntity *B, uint8 surfA, uint8 surfB, float impulse, float speed);
|
|
};
|