1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-17 12:23:13 +00:00
re3/src/render/Glass.h
2019-10-19 01:23:40 +03:00

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);
};