diff options
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 | ||
44 | namespace pCampBot | 44 | namespace 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 | { |