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>2010-10-18 19:13:58 +0000
committerStijn Buys <ingar@osirion.org>2010-10-18 19:13:58 +0000
commit4c5b00221c9405c5af06143974fbc6296ebe46b5 (patch)
tree3bbe7fbc47f6238a086260c56964d2d654cf6124 /src/game/base/game.h
parent85e3fd447aa3f45ba1dfe063b29a3e13f3416f11 (diff)
local vstrafe support, initial ship collision, g_damping factor
Diffstat (limited to 'src/game/base/game.h')
-rw-r--r--src/game/base/game.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/game/base/game.h b/src/game/base/game.h
index 3f67a25..c229a18 100644
--- a/src/game/base/game.h
+++ b/src/game/base/game.h
@@ -78,8 +78,12 @@ public:
/// game variable: jumppoint range
static core::Cvar *g_jumppointrange;
- /// game variable: enable or disable development mode
+ /// game variable: enable or disable development mode (cheat mode)
static core::Cvar *g_devel;
+
+ /// physics variable: default damping factor of space
+ static core::Cvar *g_damping;
+
private:
bool load_world();
@@ -94,7 +98,7 @@ private:
bool load_ships();
- bool load_player();
+ bool load_defaults();
/* ---- engine functions ----------------------------------- */