mirror of
https://github.com/td512/re3.git
synced 2026-01-17 09:03:36 +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(); }
|
|
};
|