重构并增加HitTest
This commit is contained in:
21
Spine/Interfaces/IAnimation.cs
Normal file
21
Spine/Interfaces/IAnimation.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Spine.Interfaces
|
||||
{
|
||||
public interface IAnimation
|
||||
{
|
||||
/// <summary>
|
||||
/// 动画名称
|
||||
/// </summary>
|
||||
public string Name { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 动画时长
|
||||
/// </summary>
|
||||
public float Duration { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user