mirror of
https://github.com/halpz/re3.git
synced 2025-04-21 10:06:59 +00:00
10 lines
172 B
C++
10 lines
172 B
C++
#pragma once
|
|
|
|
class CObject;
|
|
|
|
class CProjectileInfo
|
|
{
|
|
public:
|
|
static bool RemoveIfThisIsAProjectile(CObject *pObject);
|
|
static void RemoveAllProjectiles(void);
|
|
}; |