5 changed files with 40 additions and 5 deletions
@ -0,0 +1,15 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="ICloseable.cs" company="Steven Kirk">
|
|||
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex |
|||
{ |
|||
using System; |
|||
|
|||
public interface ICloseable |
|||
{ |
|||
event EventHandler Closed; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue