Cosmos/Users/Orvid/OForms/Controls/Delegates.cs
kudzu_cp a58ad95c10
2014-07-14 15:56:02 +00:00

19 lines
545 B
C#

using System;
using Orvid.Graphics;
namespace OForms
{
/// <summary>
/// A delegate that represents a mouse event.
/// </summary>
/// <param name="loc">The location of the mouse.</param>
/// <param name="buttons">The MouseButtons that are pressed.</param>
public delegate void MouseEvent(Vec2 loc, MouseButtons buttons);
/// <summary>
/// A delegate that represents an event
/// relating to the disposing of a control.
/// </summary>
public delegate void DisposingEvent();
}