aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-12-23 18:16:30 +0000
committerMelanie Thielker2008-12-23 18:16:30 +0000
commitfc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f (patch)
tree4d68ff7e79e99d167b234c7c0cce92715f5a9cd2 /OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
parent* Remove mono compiler warning (diff)
downloadopensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.zip
opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.gz
opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.bz2
opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.xz
Plumb in the 4 missing classified events and the 3 packet methods
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 4cd5187..e06c4c0 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -241,6 +241,11 @@ namespace OpenSim.Region.Examples.SimpleModule
241 public event TeleportLureRequest OnTeleportLureRequest; 241 public event TeleportLureRequest OnTeleportLureRequest;
242 public event NetworkStats OnNetworkStatsUpdate; 242 public event NetworkStats OnNetworkStatsUpdate;
243 243
244 public event ClassifiedInfoRequest OnClassifiedInfoRequest;
245 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
246 public event ClassifiedDelete OnClassifiedDelete;
247 public event ClassifiedDelete OnClassifiedGodDelete;
248
244#pragma warning restore 67 249#pragma warning restore 67
245 250
246 private UUID myID = UUID.Random(); 251 private UUID myID = UUID.Random();
@@ -1007,6 +1012,14 @@ namespace OpenSim.Region.Examples.SimpleModule
1007 return true; 1012 return true;
1008 } 1013 }
1009 1014
1015 public void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name)
1016 {
1017 }
1018
1019 public void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price)
1020 {
1021 }
1022
1010 #endregion 1023 #endregion
1011 } 1024 }
1012} 1025}