mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
423 B
C#
17 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class AnimData
|
|
{
|
|
public uint AnimId { get; set; }
|
|
public uint LowFrame { get; set; }
|
|
public uint HighFrame { get; set; }
|
|
// Negative framerates play animation in reverse
|
|
public float Framerate { get; set; }
|
|
}
|
|
}
|