re3/src/Glass.h

11 lines
236 B
C
Raw Normal View History

2019-05-15 14:52:37 +00:00
#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);
};