aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Interfaces
diff options
context:
space:
mode:
authormingchen2007-06-08 21:30:51 +0000
committermingchen2007-06-08 21:30:51 +0000
commit2c04171990df9e01cd4c5aa600a6eaa1487f9605 (patch)
treec5664038ce624fb0f6edb63db6c62587e45518a3 /Common/OpenSim.Framework/Interfaces
parent*Moved SendRegionHandshake back to IClientAPI and modded sendRegionHandshakeT... (diff)
downloadopensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.zip
opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.tar.gz
opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.tar.bz2
opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.tar.xz
*Added delegates and events for parcel and estate management
*Only thing left is to get the master user setup in both sandbox and grid mode
Diffstat (limited to 'Common/OpenSim.Framework/Interfaces')
-rw-r--r--Common/OpenSim.Framework/Interfaces/IClientAPI.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
index 3eed2b8..ac33649 100644
--- a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
+++ b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs
@@ -34,6 +34,8 @@ namespace OpenSim.Framework.Interfaces
34 public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); 34 public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client);
35 public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); // NOTETOSELFremove the packet part 35 public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); // NOTETOSELFremove the packet part
36 36
37 public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client);
38
37 public interface IClientAPI 39 public interface IClientAPI
38 { 40 {
39 event ChatFromViewer OnChatFromViewer; 41 event ChatFromViewer OnChatFromViewer;
@@ -61,6 +63,13 @@ namespace OpenSim.Framework.Interfaces
61 event NewAvatar OnNewAvatar; 63 event NewAvatar OnNewAvatar;
62 event GenericCall6 OnRemoveAvatar; 64 event GenericCall6 OnRemoveAvatar;
63 65
66 event ParcelPropertiesRequest OnParcelPropertiesRequest;
67 event ParcelDivideRequest OnParcelDivideRequest;
68 event ParcelJoinRequest OnParcelJoinRequest;
69 event ParcelPropertiesUpdateRequest OnParcelPropertiesUpdateRequest;
70
71 event EstateOwnerMessageRequest OnEstateOwnerMessage;
72
64 LLVector3 StartPos 73 LLVector3 StartPos
65 { 74 {
66 get; 75 get;