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-07-16 22:55:07 +0000
committerStijn Buys <ingar@osirion.org>2008-07-16 22:55:07 +0000
commiteb075660e7cb61b138c2da337115c59857f89e17 (patch)
tree0fe031a8f3562b22f61d0f95b740fe5f2326fd7b /src/core/clientstate.h
parentfecc54ad8c5a108831c2bc268f9dd7e16b511b7e (diff)
network protocol cleanup, radar test (doesn't work)
Diffstat (limited to 'src/core/clientstate.h')
-rw-r--r--src/core/clientstate.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/clientstate.h b/src/core/clientstate.h
index 915f96f..6cd283d 100644
--- a/src/core/clientstate.h
+++ b/src/core/clientstate.h
@@ -41,6 +41,8 @@ public:
inline bool detailvisible() const { return state_detailvisible; }
+ inline bool targetable() const { return state_targetable; }
+
/// client render fuzz factor
inline float fuzz() const { return state_fuzz; };
@@ -53,8 +55,11 @@ public:
math::Vector3f state_previouslocation;
math::Axis state_previousaxis;
+ double state_screenlocation[3];
+
bool state_visible;
bool state_detailvisible;
+ bool state_targetable;
float state_fuzz;
};