diff options
author | Jeff Ames | 2007-11-08 03:11:10 +0000 |
---|---|---|
committer | Jeff Ames | 2007-11-08 03:11:10 +0000 |
commit | 0b4e15bc3586422d273bd8845962a2db681230e2 (patch) | |
tree | f3394ee384d7b20fc8c1f0eee4ebda3c10203a1a /OpenSim/Region/Environment/Interfaces | |
parent | * Added Rotational Velocity reporting for Client Interpolation to Terse Updates (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IWorldComm.cs | 3 |
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 | ||
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | using OpenSim.Framework; | ||
30 | using OpenSim.Region.Environment.Modules; | 31 | using OpenSim.Region.Environment.Modules; |
31 | 32 | ||
32 | namespace OpenSim.Region.Environment.Interfaces | 33 | namespace 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); |