mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 04:38:59 +00:00
12 lines
323 B
C++
12 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);
|
|
};
|