mirror of
https://github.com/halpz/re3.git
synced 2025-01-08 20:25:28 +00: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);
|
|
};
|