OpenSimMirror/Common/OpenSim.Framework/IRegionCommsHost.cs

14 lines
257 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework
{
public delegate void ExpectUserDelegate();
public interface IRegionCommsHost
{
event ExpectUserDelegate ExpectUser;
}
}