blob: 460c4548f9ca3cf88cff3f71e960ff6a178e4c96 (
plain) (
tree)
|
|
#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);
static void Render(void);
};
|