summaryrefslogtreecommitdiffstats
path: root/src/entities/Projectile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/Projectile.h')
-rw-r--r--src/entities/Projectile.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/entities/Projectile.h b/src/entities/Projectile.h
new file mode 100644
index 00000000..a8e826b6
--- /dev/null
+++ b/src/entities/Projectile.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#pragma once
+
+#include "Object.h"
+
+class CProjectile : public CObject
+{
+public:
+ void dtor(void) { this->CProjectile::~CProjectile(); }
+};