using System; namespace Framework.UI { /// Command that can be issued to a canvas public enum DialogueCommand { /// Select the element that is above the current one SelectUp, /// Select the element that is below the current one SelectDown, /// Select the element that is left of the current one SelectLeft, /// Select the element that is right of the current one SelectRight, /// Select the element that comes before the current one SelectPrevious, /// Select the element that comes after the current one SelectNext, /// Choose the currently selected item /// /// Essentially the same as clicking on the item with the left mouse button /// Choose } } // namespace Framework.UI