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