mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-10 20:29:15 +00:00
13 lines
323 B
C++
13 lines
323 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);
|
|
};
|