aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot/PhysicsBot.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-03 22:39:06 +0000
committerJustin Clark-Casey (justincc)2011-11-03 22:39:06 +0000
commitf26fdbd8da89ee35a23886defc13b44bc63b1349 (patch)
treeb788fcc4948ab1fc4d3c20d309b5361d3b2c809b /OpenSim/Tools/pCampBot/PhysicsBot.cs
parentMove one of the old physics sleeps out into the main bot loop, so leaving out... (diff)
downloadopensim-SC_OLD-f26fdbd8da89ee35a23886defc13b44bc63b1349.zip
opensim-SC_OLD-f26fdbd8da89ee35a23886defc13b44bc63b1349.tar.gz
opensim-SC_OLD-f26fdbd8da89ee35a23886defc13b44bc63b1349.tar.bz2
opensim-SC_OLD-f26fdbd8da89ee35a23886defc13b44bc63b1349.tar.xz
Rename PhysicsBot => Bot since it doesn't just exercise physics anymore
Diffstat (limited to '')
-rw-r--r--OpenSim/Tools/pCampBot/Bot.cs (renamed from OpenSim/Tools/pCampBot/PhysicsBot.cs)6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Tools/pCampBot/PhysicsBot.cs b/OpenSim/Tools/pCampBot/Bot.cs
index 1b7c9a7..bf01065 100644
--- a/OpenSim/Tools/pCampBot/PhysicsBot.cs
+++ b/OpenSim/Tools/pCampBot/Bot.cs
@@ -43,11 +43,11 @@ using Timer = System.Timers.Timer;
43 43
44namespace pCampBot 44namespace pCampBot
45{ 45{
46 public class PhysicsBot 46 public class Bot
47 { 47 {
48 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 48 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
49 49
50 public delegate void AnEvent(PhysicsBot callbot, EventType someevent); // event delegate for bot events 50 public delegate void AnEvent(Bot callbot, EventType someevent); // event delegate for bot events
51 51
52 public BotManager BotManager { get; private set; } 52 public BotManager BotManager { get; private set; }
53 private IConfig startupConfig; // bot config, passed from BotManager 53 private IConfig startupConfig; // bot config, passed from BotManager
@@ -119,7 +119,7 @@ namespace pCampBot
119 /// <param name="password"></param> 119 /// <param name="password"></param>
120 /// <param name="loginUri"></param> 120 /// <param name="loginUri"></param>
121 /// <param name="behaviours"></param> 121 /// <param name="behaviours"></param>
122 public PhysicsBot( 122 public Bot(
123 BotManager bm, List<IBehaviour> behaviours, 123 BotManager bm, List<IBehaviour> behaviours,
124 string firstName, string lastName, string password, string loginUri) 124 string firstName, string lastName, string password, string loginUri)
125 { 125 {