mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
19 lines
323 B
C#
19 lines
323 B
C#
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
public enum ImAnimTextPathAlign
|
|
{
|
|
/// <summary>
|
|
/// Text starts at path start (or offset)
|
|
/// </summary>
|
|
Start,
|
|
|
|
/// <summary>
|
|
/// Text centered on path
|
|
/// </summary>
|
|
Center,
|
|
|
|
/// <summary>
|
|
/// Text ends at path end
|
|
/// </summary>
|
|
End,
|
|
}
|