mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-27 19:09:18 +01:00
Add ImAnim bindings
This commit is contained in:
parent
e8485dee25
commit
2b5e2893c5
43 changed files with 4852 additions and 3 deletions
19
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimDirection.cs
Normal file
19
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimDirection.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
namespace Dalamud.Bindings.ImAnim;
|
||||
|
||||
public enum ImAnimDirection
|
||||
{
|
||||
/// <summary>
|
||||
/// play forward
|
||||
/// </summary>
|
||||
Normal,
|
||||
|
||||
/// <summary>
|
||||
/// play backward
|
||||
/// </summary>
|
||||
Reverse,
|
||||
|
||||
/// <summary>
|
||||
/// ping-pong
|
||||
/// </summary>
|
||||
Alternate,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue