diff options
* Optimized usings (the 'LL ate my scripts' commit)
* added some licensing info
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EntityBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EntityBase.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs index 63f3f5d..a8eb9ce 100644 --- a/OpenSim/Region/Environment/Scenes/EntityBase.cs +++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs | |||
@@ -1,6 +1,4 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | 1 | using System.Collections.Generic; |
3 | using System.Text; | ||
4 | using Axiom.MathLib; | 2 | using Axiom.MathLib; |
5 | using libsecondlife; | 3 | using libsecondlife; |
6 | 4 | ||
@@ -8,7 +6,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
8 | { | 6 | { |
9 | public abstract class EntityBase | 7 | public abstract class EntityBase |
10 | { | 8 | { |
11 | public libsecondlife.LLUUID uuid; | 9 | public LLUUID uuid; |
12 | 10 | ||
13 | protected List<EntityBase> children; | 11 | protected List<EntityBase> children; |
14 | 12 | ||
@@ -83,7 +81,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
83 | /// </summary> | 81 | /// </summary> |
84 | public EntityBase() | 82 | public EntityBase() |
85 | { | 83 | { |
86 | uuid = new libsecondlife.LLUUID(); | 84 | uuid = new LLUUID(); |
87 | 85 | ||
88 | m_pos = new LLVector3(); | 86 | m_pos = new LLVector3(); |
89 | velocity = new LLVector3(); | 87 | velocity = new LLVector3(); |