Example #1
0
        public static string GetPrompt(this GamepadAxis axis, GamepadType type)
        {
            if (axis == GamepadAxis.None)
            {
                return("?");
            }

            return('[' + axis.GetPromptImagePath(type) + ']');
        }