diff options
author | Justin Clark-Casey (justincc) | 2011-11-03 21:25:27 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-11-03 21:25:27 +0000 |
commit | 3ea379e4cd2c96e3a21705c752175e9d25b364b7 (patch) | |
tree | 171ef29d056b417d1ff5f9898c386f9129d04558 /OpenSim/Tools/pCampBot | |
parent | Separate out physics testing actions into a separate PhysicsBehaviour class (diff) | |
download | opensim-SC_OLD-3ea379e4cd2c96e3a21705c752175e9d25b364b7.zip opensim-SC_OLD-3ea379e4cd2c96e3a21705c752175e9d25b364b7.tar.gz opensim-SC_OLD-3ea379e4cd2c96e3a21705c752175e9d25b364b7.tar.bz2 opensim-SC_OLD-3ea379e4cd2c96e3a21705c752175e9d25b364b7.tar.xz |
Move PhysicsBehaviour into a spearate behaviours folder
Diffstat (limited to 'OpenSim/Tools/pCampBot')
-rw-r--r-- | OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour.cs (renamed from OpenSim/Tools/pCampBot/PhysicsBehaviour.cs) | 0 | ||||
-rw-r--r-- | OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs | 1 | ||||
-rw-r--r-- | OpenSim/Tools/pCampBot/PhysicsBot.cs | 4 |
3 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Tools/pCampBot/PhysicsBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour.cs index e76c0b3..e76c0b3 100644 --- a/OpenSim/Tools/pCampBot/PhysicsBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/PhysicsBehaviour.cs | |||
diff --git a/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs b/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs index f9eaa1c..8a1015d 100644 --- a/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs | |||
@@ -25,7 +25,6 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using pCampBot; | ||
29 | using System; | 28 | using System; |
30 | 29 | ||
31 | namespace pCampBot.Interfaces | 30 | namespace pCampBot.Interfaces |
diff --git a/OpenSim/Tools/pCampBot/PhysicsBot.cs b/OpenSim/Tools/pCampBot/PhysicsBot.cs index c1bd49f..05a510a 100644 --- a/OpenSim/Tools/pCampBot/PhysicsBot.cs +++ b/OpenSim/Tools/pCampBot/PhysicsBot.cs | |||
@@ -36,9 +36,9 @@ using log4net; | |||
36 | using OpenMetaverse; | 36 | using OpenMetaverse; |
37 | using OpenMetaverse.Assets; | 37 | using OpenMetaverse.Assets; |
38 | using Nini.Config; | 38 | using Nini.Config; |
39 | using pCampBot.Interfaces; | ||
40 | using OpenSim.Framework; | 39 | using OpenSim.Framework; |
41 | using OpenSim.Framework.Console; | 40 | using OpenSim.Framework.Console; |
41 | using pCampBot.Interfaces; | ||
42 | using Timer = System.Timers.Timer; | 42 | using Timer = System.Timers.Timer; |
43 | 43 | ||
44 | namespace pCampBot | 44 | namespace pCampBot |
@@ -105,7 +105,7 @@ namespace pCampBot | |||
105 | string firstName, string lastName, string password, string loginUri) | 105 | string firstName, string lastName, string password, string loginUri) |
106 | { | 106 | { |
107 | Client = new GridClient(); | 107 | Client = new GridClient(); |
108 | 108 | ||
109 | Random = new Random(Environment.TickCount);// We do stuff randomly here | 109 | Random = new Random(Environment.TickCount);// We do stuff randomly here |
110 | FirstName = firstName; | 110 | FirstName = firstName; |
111 | LastName = lastName; | 111 | LastName = lastName; |