re3-wiiu/src/render/Glass.h

15 lines
375 B
C
Raw Normal View History

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