re3/src/render/Glass.h

14 lines
350 B
C
Raw Normal View History

2019-05-15 14:52:37 +00:00
#pragma once
class CEntity;
class CGlass
{
public:
2019-06-30 19:06:55 +00:00
static void AskForObjectToBeRenderedInGlass(CEntity *ent);
2019-05-15 14:52:37 +00:00
static void WindowRespondsToCollision(CEntity *ent, float amount, CVector speed, CVector point, bool foo);
static void WindowRespondsToSoftCollision(CEntity *ent, float amount);
static void Render(void);
2019-10-18 22:23:40 +00:00
static void Update(void);
2019-05-15 14:52:37 +00:00
};