diff options
author | Adam Frisby | 2007-10-19 22:02:07 +0000 |
---|---|---|
committer | Adam Frisby | 2007-10-19 22:02:07 +0000 |
commit | 1313544ac7761ec7d84c14009fc95d5d7316004d (patch) | |
tree | 39a7bd27f07bb96859f5d09436d7e81e99f951a9 /OpenSim/Region/Environment/Interfaces/ISimChat.cs | |
parent | enable IRC bridge via runtime configuration (diff) | |
download | opensim-SC_OLD-1313544ac7761ec7d84c14009fc95d5d7316004d.zip opensim-SC_OLD-1313544ac7761ec7d84c14009fc95d5d7316004d.tar.gz opensim-SC_OLD-1313544ac7761ec7d84c14009fc95d5d7316004d.tar.bz2 opensim-SC_OLD-1313544ac7761ec7d84c14009fc95d5d7316004d.tar.xz |
* Major structural change: Begun converting Events to use (caller, args) syntax to conform with .NET guidelines.
* OnChatFromViewer has been converted as an example.
* Bug: SimpleApp's NPC client does not implement a Scene property and will likely crash with a NullReferenceException when it attempts to chat.
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ISimChat.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ISimChat.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ISimChat.cs b/OpenSim/Region/Environment/Interfaces/ISimChat.cs index 4ec55ff..583d8b2 100644 --- a/OpenSim/Region/Environment/Interfaces/ISimChat.cs +++ b/OpenSim/Region/Environment/Interfaces/ISimChat.cs | |||
@@ -32,6 +32,6 @@ namespace OpenSim.Region.Environment.Interfaces | |||
32 | { | 32 | { |
33 | public interface ISimChat | 33 | public interface ISimChat |
34 | { | 34 | { |
35 | void SimChat(byte[] message, byte type, int channel, LLVector3 fromPos, string fromName, LLUUID fromAgentID); | 35 | void SimChat(System.Object sender, OpenSim.Framework.Interfaces.ChatFromViewerArgs e); |
36 | } | 36 | } |
37 | } | 37 | } |