summaryrefslogtreecommitdiff
path: root/src/objects/Projectile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objects/Projectile.h')
-rw-r--r--src/objects/Projectile.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/objects/Projectile.h b/src/objects/Projectile.h
new file mode 100644
index 0000000..4b3eb4b
--- /dev/null
+++ b/src/objects/Projectile.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "Object.h"
+
+class CProjectile : public CObject
+{
+public:
+ CProjectile(int32);
+};