mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 08:28:59 +00:00
11 lines
236 B
C
11 lines
236 B
C
|
#pragma once
|
||
|
|
||
|
class CEntity;
|
||
|
|
||
|
class CGlass
|
||
|
{
|
||
|
public:
|
||
|
static void WindowRespondsToCollision(CEntity *ent, float amount, CVector speed, CVector point, bool foo);
|
||
|
static void WindowRespondsToSoftCollision(CEntity *ent, float amount);
|
||
|
};
|