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>2008-08-01 22:06:11 +0000
committerStijn Buys <ingar@osirion.org>2008-08-01 22:06:11 +0000
commitf831477c2502b7a2b32cd1fe1b6678a9c87d3fda (patch)
treecae0d1c20354ee9df4eccce2b3763c95c18bf525 /src/game/ship.h
parentd2f36485dd3fbda7c9eb212ac9ffde919af5f8e1 (diff)
jumpdrive countdown
Diffstat (limited to 'src/game/ship.h')
-rw-r--r--src/game/ship.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/ship.h b/src/game/ship.h
index bca0857..4d04b62 100644
--- a/src/game/ship.h
+++ b/src/game/ship.h
@@ -27,6 +27,9 @@ public:
/// true if the ship is equiped with a jumpdrive
inline bool jumpdrive() const { return ship_jumpdrive; }
+ /// toggle jump drive activation
+ void jump(std::string const & args);
+
private:
ShipModel *ship_shipmodel;
@@ -35,6 +38,10 @@ private:
float current_target_roll;
bool ship_jumpdrive;
+ float ship_jumpdrive_activated;
+ core::Zone *ship_jumptargetzone;
+
+ float ship_countdown;
};
}