* Moved SendLogoutPacket back to IClientAPI.

This commit is contained in:
lbsa71
2007-09-18 23:37:43 +00:00
parent f71b315592
commit 3f6b3f6b59
4 changed files with 21 additions and 10 deletions

View File

@@ -8,6 +8,7 @@ using OpenSim.Framework.Interfaces;
using OpenSim.Framework.Types;
using OpenSim.Framework.Utilities;
using OpenSim.Region.Environment.Scenes;
using System;
namespace SimpleApp
{
@@ -20,6 +21,9 @@ namespace SimpleApp
#pragma warning disable 67
public event Action<IClientAPI> OnLogout;
public event Action<IClientAPI> OnConnectionClosed;
public event ImprovedInstantMessage OnInstantMessage;
public event ChatFromViewer OnChatFromViewer;
public event RezObject OnRezObject;
@@ -246,8 +250,8 @@ namespace SimpleApp
}
}
public event System.Action<IClientAPI> OnLogout;
public event System.Action<IClientAPI> OnConnectionClosed;
public void SendLogoutPacket()
{
}
}
}