Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-10-10 21:28:24 +0000
committerStijn Buys <ingar@osirion.org>2012-10-10 21:28:24 +0000
commitfe77356f14255d86fe61130d1939243ce7fc59b1 (patch)
tree080b455b0a8ceb263ed74ccf204581eb6324a145 /src/game/base/spacemine.h
parent05c560e7b9f508997a7c7c5e466329692796dab4 (diff)
Added space mine proof of concept.
Diffstat (limited to 'src/game/base/spacemine.h')
-rw-r--r--src/game/base/spacemine.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/game/base/spacemine.h b/src/game/base/spacemine.h
new file mode 100644
index 0000000..cdb903c
--- /dev/null
+++ b/src/game/base/spacemine.h
@@ -0,0 +1,38 @@
+/*
+ base/spacemine.h
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_BASE_SPACEMINE_H__
+#define __INCLUDED_BASE_SPACEMINE_H__
+
+#include "core/entity.h"
+#include "base/template.h"
+
+namespace game
+{
+
+class SpaceMine : public core::EntityDynamic
+{
+public:
+ SpaceMine();
+ virtual ~SpaceMine();
+
+ virtual void upkeep(const unsigned long timestamp);
+
+ virtual void collision(Entity *other);
+
+ virtual void frame(const unsigned long elapsed);
+
+ static void eject(core::EntityControlable *ejector);
+
+private:
+
+ unsigned long spacemine_detonated_timestamp;
+};
+
+} // namespace game
+
+#endif // __INCLUDED_BASE_SPACEMINE_H__
+