mirror of
https://github.com/halpz/re3.git
synced 2024-12-26 18:15:27 +00:00
10 lines
104 B
C++
10 lines
104 B
C++
#pragma once
|
|
|
|
#include "Object.h"
|
|
|
|
class CProjectile : public CObject
|
|
{
|
|
public:
|
|
CProjectile(int32);
|
|
};
|