mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-27 02:01:48 +01:00
12 lines
263 B
C++
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);
|
|
};
|