mirror of
https://github.com/td512/re3.git
synced 2026-01-15 12:35:39 +00:00
10 lines
104 B
C++
10 lines
104 B
C++
#pragma once
|
|
|
|
#include "Object.h"
|
|
|
|
class CProjectile : public CObject
|
|
{
|
|
public:
|
|
CProjectile(int32);
|
|
};
|