2019-05-15 16:52:37 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CEntity;
|
|
|
|
|
|
|
|
class CGlass
|
|
|
|
{
|
|
|
|
public:
|
2019-06-30 21:06:55 +02:00
|
|
|
static void AskForObjectToBeRenderedInGlass(CEntity *ent);
|
2019-05-15 16:52:37 +02:00
|
|
|
static void WindowRespondsToCollision(CEntity *ent, float amount, CVector speed, CVector point, bool foo);
|
|
|
|
static void WindowRespondsToSoftCollision(CEntity *ent, float amount);
|
2019-05-30 21:24:47 +02:00
|
|
|
static void Render(void);
|
2019-05-15 16:52:37 +02:00
|
|
|
};
|