diff options
author | Jeff Ames | 2008-06-26 20:04:06 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-26 20:04:06 +0000 |
commit | 56802afff4ce1585dba96ba49be02bc34a5c29e0 (patch) | |
tree | 7509e9e487d2add8d5b1ba75120e9492ca9d46d0 /OpenSim/Framework/IClientAPI.cs | |
parent | * Put extensions on all assets in an archive (diff) | |
download | opensim-SC_OLD-56802afff4ce1585dba96ba49be02bc34a5c29e0.zip opensim-SC_OLD-56802afff4ce1585dba96ba49be02bc34a5c29e0.tar.gz opensim-SC_OLD-56802afff4ce1585dba96ba49be02bc34a5c29e0.tar.bz2 opensim-SC_OLD-56802afff4ce1585dba96ba49be02bc34a5c29e0.tar.xz |
Update svn properties. Minor formatting cleanup.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 8eb82b2..5b0726b 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -37,11 +37,9 @@ namespace OpenSim.Framework | |||
37 | public interface IEventArgs | 37 | public interface IEventArgs |
38 | { | 38 | { |
39 | IScene Scene { get; set; } | 39 | IScene Scene { get; set; } |
40 | |||
41 | IClientAPI Sender { get; set; } | 40 | IClientAPI Sender { get; set; } |
42 | } | 41 | } |
43 | 42 | ||
44 | |||
45 | public delegate void ViewerEffectEventHandler(IClientAPI sender, List<ViewerEffectEventHandlerArg> args); | 43 | public delegate void ViewerEffectEventHandler(IClientAPI sender, List<ViewerEffectEventHandlerArg> args); |
46 | 44 | ||
47 | public delegate void ChatFromViewer(Object sender, ChatFromViewerArgs e); | 45 | public delegate void ChatFromViewer(Object sender, ChatFromViewerArgs e); |
@@ -281,6 +279,7 @@ namespace OpenSim.Framework | |||
281 | public LLVector3 UserLocation; | 279 | public LLVector3 UserLocation; |
282 | public LLVector3 UserLookAt; | 280 | public LLVector3 UserLookAt; |
283 | } | 281 | } |
282 | |||
284 | public class RegionHandshakeArgs : EventArgs | 283 | public class RegionHandshakeArgs : EventArgs |
285 | { | 284 | { |
286 | public bool isEstateManager; | 285 | public bool isEstateManager; |
@@ -358,6 +357,7 @@ namespace OpenSim.Framework | |||
358 | public int SourceType; | 357 | public int SourceType; |
359 | public LLUUID TransferID; | 358 | public LLUUID TransferID; |
360 | } | 359 | } |
360 | |||
361 | public class AgentUpdateArgs : EventArgs | 361 | public class AgentUpdateArgs : EventArgs |
362 | { | 362 | { |
363 | public LLUUID AgentID; | 363 | public LLUUID AgentID; |
@@ -644,7 +644,6 @@ namespace OpenSim.Framework | |||
644 | public delegate void EstateTeleportOneUserHomeRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID prey); | 644 | public delegate void EstateTeleportOneUserHomeRequest(IClientAPI remoteClient, LLUUID invoice, LLUUID senderID, LLUUID prey); |
645 | public delegate void ScriptReset(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID); | 645 | public delegate void ScriptReset(IClientAPI remoteClient, LLUUID objectID, LLUUID itemID); |
646 | 646 | ||
647 | |||
648 | public interface IClientAPI | 647 | public interface IClientAPI |
649 | { | 648 | { |
650 | LLVector3 StartPos { get; set; } | 649 | LLVector3 StartPos { get; set; } |
@@ -681,8 +680,6 @@ namespace OpenSim.Framework | |||
681 | set; | 680 | set; |
682 | } | 681 | } |
683 | 682 | ||
684 | |||
685 | |||
686 | [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] | 683 | [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] |
687 | uint CircuitCode { get; } | 684 | uint CircuitCode { get; } |
688 | [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] | 685 | [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] |