using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Spine.Interfaces
{
public interface IAnimation
{
///
/// 动画名称
///
public string Name { get; }
///
/// 动画时长
///
public float Duration { get; }
}
}