mirror of
https://github.com/halpz/re3.git
synced 2026-09-15 05:43:53 +00:00
12 lines
153 B
C++
12 lines
153 B
C++
#pragma once
|
|
|
|
#pragma once
|
|
|
|
#include "Object.h"
|
|
|
|
class CProjectile : public CObject
|
|
{
|
|
public:
|
|
void dtor(void) { this->CProjectile::~CProjectile(); }
|
|
};
|