diff options
author | SignpostMarv | 2012-09-11 20:02:00 +0100 |
---|---|---|
committer | Melanie | 2012-09-11 20:12:44 +0100 |
commit | 0a22e78f591b905a92e9c5e2cf57d50d281e11f6 (patch) | |
tree | b3fe32b6ba74dbb641a81b325b29c89183c09bbb /OpenSim/Region | |
parent | documentation (OnBackup) (diff) | |
download | opensim-SC_OLD-0a22e78f591b905a92e9c5e2cf57d50d281e11f6.zip opensim-SC_OLD-0a22e78f591b905a92e9c5e2cf57d50d281e11f6.tar.gz opensim-SC_OLD-0a22e78f591b905a92e9c5e2cf57d50d281e11f6.tar.bz2 opensim-SC_OLD-0a22e78f591b905a92e9c5e2cf57d50d281e11f6.tar.xz |
documentation (OnClientConnect)
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/EventManager.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EventManager.cs b/OpenSim/Region/Framework/Scenes/EventManager.cs index 8b5936f..0daecaf 100644 --- a/OpenSim/Region/Framework/Scenes/EventManager.cs +++ b/OpenSim/Region/Framework/Scenes/EventManager.cs | |||
@@ -103,6 +103,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
103 | 103 | ||
104 | public delegate void OnClientConnectCoreDelegate(IClientCore client); | 104 | public delegate void OnClientConnectCoreDelegate(IClientCore client); |
105 | 105 | ||
106 | /// <summary> | ||
107 | /// Triggered when a new client connects to the scene. | ||
108 | /// </summary> | ||
109 | /// <remarks> | ||
110 | /// This gets triggered in <see cref="TriggerOnNewClient"/>, | ||
111 | /// which checks if an instance of <see cref="OpenSim.Framework.IClientAPI"/> | ||
112 | /// also implements <see cref="OpenSim.Framework.Client.IClientCore"/> and as such, | ||
113 | /// is not triggered by <see cref="OpenSim.Region.OptionalModules.World.NPC">NPCs</see>. | ||
114 | /// </remarks> | ||
106 | public event OnClientConnectCoreDelegate OnClientConnect; | 115 | public event OnClientConnectCoreDelegate OnClientConnect; |
107 | 116 | ||
108 | public delegate void OnNewClientDelegate(IClientAPI client); | 117 | public delegate void OnNewClientDelegate(IClientAPI client); |