mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 04:29:00 +00:00
10 lines
236 B
C++
10 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);
|
|
};
|