diff options
author | Adam Frisby | 2008-09-09 05:25:29 +0000 |
---|---|---|
committer | Adam Frisby | 2008-09-09 05:25:29 +0000 |
commit | c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f (patch) | |
tree | 4c2269de2c672ac0d28c2d5f97fbffccec525294 /OpenSim/Region/Environment | |
parent | Fix llResetScript() and the reset button to actually restore global (diff) | |
download | opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.zip opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.tar.gz opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.tar.bz2 opensim-SC_OLD-c95bdb83c0d91ecb4c5a73e3ae4deadbcc54955f.tar.xz |
* Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.
* Please don't break the build. *fingers crossed*
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs index 8bf0d96..20b203a 100644 --- a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | |||
@@ -159,7 +159,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
159 | public event MoneyTransferRequest OnMoneyTransferRequest; | 159 | public event MoneyTransferRequest OnMoneyTransferRequest; |
160 | public event ParcelBuy OnParcelBuy; | 160 | public event ParcelBuy OnParcelBuy; |
161 | public event Action<IClientAPI> OnConnectionClosed; | 161 | public event Action<IClientAPI> OnConnectionClosed; |
162 | 162 | public event GenericMessage OnGenericMessage; | |
163 | public event ImprovedInstantMessage OnInstantMessage; | 163 | public event ImprovedInstantMessage OnInstantMessage; |
164 | public event ChatMessage OnChatFromViewer; | 164 | public event ChatMessage OnChatFromViewer; |
165 | public event TextureRequest OnRequestTexture; | 165 | public event TextureRequest OnRequestTexture; |
@@ -465,6 +465,11 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
465 | { | 465 | { |
466 | } | 466 | } |
467 | 467 | ||
468 | public void SendGenericMessage(string method, List<string> message) | ||
469 | { | ||
470 | |||
471 | } | ||
472 | |||
468 | public virtual void SendLayerData(float[] map) | 473 | public virtual void SendLayerData(float[] map) |
469 | { | 474 | { |
470 | } | 475 | } |
@@ -762,6 +767,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
762 | get { return m_circuitCode; } | 767 | get { return m_circuitCode; } |
763 | set { m_circuitCode = value; } | 768 | set { m_circuitCode = value; } |
764 | } | 769 | } |
770 | |||
765 | public void SendBlueBoxMessage(UUID FromAvatarID, UUID fromSessionID, String FromAvatarName, String Message) | 771 | public void SendBlueBoxMessage(UUID FromAvatarID, UUID fromSessionID, String FromAvatarName, String Message) |
766 | { | 772 | { |
767 | 773 | ||