aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ExportBot/TestClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ExportBot/TestClient.cs')
-rw-r--r--ExportBot/TestClient.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/ExportBot/TestClient.cs b/ExportBot/TestClient.cs
index cf8783e..f939aa0 100644
--- a/ExportBot/TestClient.cs
+++ b/ExportBot/TestClient.cs
@@ -18,12 +18,12 @@ namespace libsecondlife.TestClient
18 public LLUUID GroupID = LLUUID.Zero; 18 public LLUUID GroupID = LLUUID.Zero;
19 public Dictionary<LLUUID, GroupMember> GroupMembers; 19 public Dictionary<LLUUID, GroupMember> GroupMembers;
20 public Dictionary<uint, Avatar> AvatarList = new Dictionary<uint,Avatar>(); 20 public Dictionary<uint, Avatar> AvatarList = new Dictionary<uint,Avatar>();
21 public Dictionary<LLUUID, AvatarAppearancePacket> Appearances = new Dictionary<LLUUID, AvatarAppearancePacket>(); 21 public Dictionary<LLUUID, AvatarAppearancePacket> Appearances = new Dictionary<LLUUID, AvatarAppearancePacket>();
22 public Dictionary<string, Command> Commands = new Dictionary<string,Command>(); 22 public Dictionary<string, Command> Commands = new Dictionary<string,Command>();
23 public bool Running = true; 23 public bool Running = true;
24 public string MasterName = String.Empty; 24 public string MasterName = String.Empty;
25 public LLUUID MasterKey = LLUUID.Zero; 25 public LLUUID MasterKey = LLUUID.Zero;
26 public ClientManager ClientManager; 26 public ClientManager ClientManager;
27 public int regionX; 27 public int regionX;
28 public int regionY; 28 public int regionY;
29 29
@@ -41,7 +41,7 @@ namespace libsecondlife.TestClient
41 /// </summary> 41 /// </summary>
42 public TestClient(ClientManager manager) 42 public TestClient(ClientManager manager)
43 { 43 {
44 ClientManager = manager; 44 ClientManager = manager;
45 45
46 updateTimer = new System.Timers.Timer(1000); 46 updateTimer = new System.Timers.Timer(1000);
47 updateTimer.Elapsed += new System.Timers.ElapsedEventHandler(updateTimer_Elapsed); 47 updateTimer.Elapsed += new System.Timers.ElapsedEventHandler(updateTimer_Elapsed);
@@ -57,7 +57,7 @@ namespace libsecondlife.TestClient
57 Objects.OnNewPrim += new ObjectManager.NewPrimCallback(Objects_OnNewPrim); 57 Objects.OnNewPrim += new ObjectManager.NewPrimCallback(Objects_OnNewPrim);
58 Objects.OnObjectUpdated += new ObjectManager.ObjectUpdatedCallback(Objects_OnObjectUpdated); 58 Objects.OnObjectUpdated += new ObjectManager.ObjectUpdatedCallback(Objects_OnObjectUpdated);
59 Objects.OnObjectKilled += new ObjectManager.KillObjectCallback(Objects_OnObjectKilled); 59 Objects.OnObjectKilled += new ObjectManager.KillObjectCallback(Objects_OnObjectKilled);
60 Objects.OnNewAvatar += new ObjectManager.NewAvatarCallback(Objects_OnNewAvatar); 60 Objects.OnNewAvatar += new ObjectManager.NewAvatarCallback(Objects_OnNewAvatar);
61 Self.OnInstantMessage += new MainAvatar.InstantMessageCallback(Self_OnInstantMessage); 61 Self.OnInstantMessage += new MainAvatar.InstantMessageCallback(Self_OnInstantMessage);
62 Groups.OnGroupMembers += new GroupManager.GroupMembersCallback(GroupMembersHandler); 62 Groups.OnGroupMembers += new GroupManager.GroupMembersCallback(GroupMembersHandler);
63 this.OnLogMessage += new LogCallback(TestClient_OnLogMessage); 63 this.OnLogMessage += new LogCallback(TestClient_OnLogMessage);