12 lines
284 B
C#
12 lines
284 B
C#
namespace Dashboard.Windowing
|
|
{
|
|
public interface IEventListener
|
|
{
|
|
/// <summary>
|
|
/// Send an event to this windowing object.
|
|
/// </summary>
|
|
/// <param name="args">The event arguments sent.</param>
|
|
void SendEvent(EventArgs args);
|
|
}
|
|
}
|