mirror of
https://github.com/halpz/re3.git
synced 2025-02-25 10:42:12 +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(); }
|
|
};
|