namespace Dalamud.Game.Text; /// /// Extension methods for . /// public static class SeIconCharExtensions { /// /// Convert the SeIconChar to a type. /// /// The icon to convert. /// The converted icon. public static char ToIconChar(this SeIconChar icon) { return (char)icon; } /// /// Conver the SeIconChar to a type. /// /// The icon to convert. /// The converted icon. public static string ToIconString(this SeIconChar icon) { return string.Empty + (char)icon; } }