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