aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IWorldComm.cs
diff options
context:
space:
mode:
authorJeff Ames2007-11-08 03:11:10 +0000
committerJeff Ames2007-11-08 03:11:10 +0000
commit0b4e15bc3586422d273bd8845962a2db681230e2 (patch)
treef3394ee384d7b20fc8c1f0eee4ebda3c10203a1a /OpenSim/Region/Environment/Interfaces/IWorldComm.cs
parent* Added Rotational Velocity reporting for Client Interpolation to Terse Updates (diff)
downloadopensim-SC_OLD-0b4e15bc3586422d273bd8845962a2db681230e2.zip
opensim-SC_OLD-0b4e15bc3586422d273bd8845962a2db681230e2.tar.gz
opensim-SC_OLD-0b4e15bc3586422d273bd8845962a2db681230e2.tar.bz2
opensim-SC_OLD-0b4e15bc3586422d273bd8845962a2db681230e2.tar.xz
converted hard-coded chat type values to ChatTypeEnum
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/IWorldComm.cs')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IWorldComm.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs
index 27b5466..d8811c6 100644
--- a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs
+++ b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs
@@ -27,6 +27,7 @@
27*/ 27*/
28 28
29using libsecondlife; 29using libsecondlife;
30using OpenSim.Framework;
30using OpenSim.Region.Environment.Modules; 31using OpenSim.Region.Environment.Modules;
31 32
32namespace OpenSim.Region.Environment.Interfaces 33namespace OpenSim.Region.Environment.Interfaces
@@ -34,7 +35,7 @@ namespace OpenSim.Region.Environment.Interfaces
34 public interface IWorldComm 35 public interface IWorldComm
35 { 36 {
36 int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg); 37 int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg);
37 void DeliverMessage(string sourceItemID, int type, int channel, string name, string msg); 38 void DeliverMessage(string sourceItemID, ChatTypeEnum type, int channel, string name, string msg);
38 bool HasMessages(); 39 bool HasMessages();
39 ListenerInfo GetNextMessage(); 40 ListenerInfo GetNextMessage();
40 void ListenControl(int handle, int active); 41 void ListenControl(int handle, int active);