1
0
mirror of https://github.com/td512/re3.git synced 2026-01-24 15:11:14 +00:00
td512.re3/src/render/Glass.h

12 lines
263 B
C++

#pragma once
class CEntity;
class CGlass
{
public:
static void WindowRespondsToCollision(CEntity *ent, float amount, CVector speed, CVector point, bool foo);
static void WindowRespondsToSoftCollision(CEntity *ent, float amount);
static void Render(void);
};