mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-25 17:21:49 +01:00
14 lines
350 B
C++
14 lines
350 B
C++
#pragma once
|
|
|
|
class CEntity;
|
|
|
|
class CGlass
|
|
{
|
|
public:
|
|
static void AskForObjectToBeRenderedInGlass(CEntity *ent);
|
|
static void WindowRespondsToCollision(CEntity *ent, float amount, CVector speed, CVector point, bool foo);
|
|
static void WindowRespondsToSoftCollision(CEntity *ent, float amount);
|
|
static void Render(void);
|
|
static void Update(void);
|
|
};
|