mirror of
https://github.com/halpz/re3.git
synced 2025-11-16 21:54:57 +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(); }
|
|
};
|