using System; namespace OpenVIII { /// /// Flags for cursor behavior /// /// Defaults to disabled. [Flags] public enum Cursor_Status { /// /// Hide Cursor and disable all code that uses it. /// Disabled = 0x0, /// /// Show Cursor /// Enabled = 0x1, /// /// Triggers blinking /// Blinking = 0x2, /// /// Makes it react to left and right instead of up and down. /// Horizontal = 0x4, /// /// This is the default but if you want both directions you need to set the flag. /// Vertical = 0x8, /// /// Just draw. /// Draw = 0x10, /// /// Don't draw cursor /// Hidden = 0x20, /// /// Don't move cursor /// Static = 0x40, /// /// All targets /// All = 0x80 } }