mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
120 lines
2.2 KiB
C#
120 lines
2.2 KiB
C#
#pragma warning disable 1591
|
|
|
|
namespace Dalamud.Game.Text.SeStringHandling {
|
|
public enum BitmapFontIcon : uint {
|
|
None,
|
|
ControllerDPadUp,
|
|
ControllerDPadDown,
|
|
ControllerDPadLeft,
|
|
ControllerDPadRight,
|
|
ControllerDPadUpDown,
|
|
ControllerDPadLeftRight,
|
|
ControllerDPadAll,
|
|
|
|
ControllerButton0, // Xbox B / PS Circle
|
|
ControllerButton1, // Xbox A / PS Cross
|
|
ControllerButton2, // Xbox X / PS Square
|
|
ControllerButton3, // Xbox Y / PS Triangle
|
|
|
|
ControllerShoulderLeft,
|
|
ControllerShoulderRight,
|
|
|
|
ControllerTriggerLeft,
|
|
ControllerTriggerRight,
|
|
|
|
ControllerAnalogLeftStickIn,
|
|
ControllerAnalogRightStickIn,
|
|
|
|
ControllerStart,
|
|
ControllerBack,
|
|
|
|
ControllerAnalogLeftStick,
|
|
ControllerAnalogLeftStickUpDown,
|
|
ControllerAnalogLeftStickLeftRight,
|
|
|
|
ControllerAnalogRightStick,
|
|
ControllerAnalogRightStickUpDown,
|
|
ControllerAnalogRightStickLeftRight,
|
|
|
|
LaNoscea = 51,
|
|
BlackShroud,
|
|
Thanalan,
|
|
AutoTranslateBegin,
|
|
AutoTranslateEnd,
|
|
ElementFire,
|
|
ElementIce,
|
|
ElementWind,
|
|
ElementEarth,
|
|
ElementLightning,
|
|
ElementWater,
|
|
LevelSync,
|
|
Warning,
|
|
Ishgard,
|
|
Aetheryte,
|
|
Aethernet,
|
|
|
|
GoldStar,
|
|
SilverStar,
|
|
|
|
GreenDot = 70,
|
|
SwordUnsheathed,
|
|
SwordSheathed,
|
|
|
|
Dice,
|
|
|
|
FlyZone,
|
|
FlyZoneLocked,
|
|
|
|
NoCircle,
|
|
|
|
NewAdventurer,
|
|
Mentor,
|
|
MentorPvE,
|
|
MentorCrafting,
|
|
MentorPvP,
|
|
|
|
Tank,
|
|
Healer,
|
|
DPS,
|
|
Crafter,
|
|
Gatherer,
|
|
AnyClass,
|
|
|
|
CrossWorld,
|
|
|
|
FateSlay,
|
|
FateBoss,
|
|
FateGather,
|
|
FateDefend,
|
|
FateEscort,
|
|
FateSpecial1,
|
|
|
|
Returner,
|
|
|
|
FarEast,
|
|
GyrAbania,
|
|
|
|
FateSpecial2,
|
|
|
|
PriorityWorld,
|
|
|
|
ElementalLevel,
|
|
ExclamationRectangle,
|
|
|
|
NotoriousMonster,
|
|
|
|
Recording,
|
|
Alarm,
|
|
|
|
ArrowUp,
|
|
ArrowDown,
|
|
Crystarium,
|
|
|
|
MentorProblem,
|
|
|
|
FateUnknownGold,
|
|
|
|
OrangeDiamond,
|
|
FateCrafting
|
|
}
|
|
}
|