Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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;
};
}