mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
19 lines
526 B
C#
19 lines
526 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();
|
|
|
|
}
|