diff options
Diffstat (limited to 'OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs index a055339..9839b0c 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | |||
@@ -232,5 +232,22 @@ namespace SimpleApp | |||
232 | public void Close() | 232 | public void Close() |
233 | { | 233 | { |
234 | } | 234 | } |
235 | |||
236 | private uint m_circuitCode; | ||
237 | public uint CircuitCode | ||
238 | { | ||
239 | get | ||
240 | { | ||
241 | return m_circuitCode; | ||
242 | } | ||
243 | set | ||
244 | { | ||
245 | m_circuitCode = value; | ||
246 | } | ||
247 | } | ||
248 | |||
249 | public event System.Action<IClientAPI> OnLogout; | ||
250 | |||
251 | public event System.Action<IClientAPI> OnConnectionClosed; | ||
235 | } | 252 | } |
236 | } | 253 | } |