mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-26 09:41:49 +01:00
11 lines
280 B
C++
11 lines
280 B
C++
#pragma once
|
|
|
|
class CObject;
|
|
|
|
class CProjectileInfo
|
|
{
|
|
public:
|
|
static bool RemoveIfThisIsAProjectile(CObject *pObject);
|
|
static void RemoveAllProjectiles(void);
|
|
static bool IsProjectileInRange(float x1, float x2, float y1, float y2, float z1, float z2, bool remove);
|
|
}; |