blob: 5347467bd1dcc0ca76fb203991be2226c00fac88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#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);
};
|