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-20 19:13:46 +0000
committerStijn Buys <ingar@osirion.org>2010-10-20 19:13:46 +0000
commitc2a6f7c2ee6245109c897ee23b093b5277a30594 (patch)
treeb8976c8869ea156c992a7d9d3b6c1355f3730303 /src/core/entity.h
parent08f0d0fb6a57f9c398bc03ed9a3cc9537a1f3e18 (diff)
removes Static and Solid entity flags, corrects EntityDynamic motionstate sync
Diffstat (limited to 'src/core/entity.h')
-rw-r--r--src/core/entity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/entity.h b/src/core/entity.h
index f6ee1d7..8dd5644 100644
--- a/src/core/entity.h
+++ b/src/core/entity.h
@@ -44,7 +44,7 @@ public:
/**
* @brief entity flags
*/
- enum Flags {Static = 1, Solid = 2, Bright = 4, Dockable = 8, ShowOnMap = 16, KeepAlive = 32};
+ enum Flags {NonSolid = 2, Bright = 4, Dockable = 8, ShowOnMap = 16, KeepAlive = 32};
/// Entity type constants
enum Type {Default = 0, Dynamic = 1, Controlable = 2, Globe = 3};