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);
|
2019-05-30 19:24:47 +00:00
|
|
|
static void Render(void);
|
2019-10-18 22:23:40 +00:00
|
|
|
static void Update(void);
|
2020-03-22 14:23:40 +00:00
|
|
|
static void Init(void);
|
2019-05-15 14:52:37 +00:00
|
|
|
};
|