更换为wpf

This commit is contained in:
ww-rm
2025-05-27 15:55:10 +08:00
parent d0f629d9ba
commit 17257a0ffe
316 changed files with 19206 additions and 76537 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Spine.SpineWrappers
{
public interface IAnimation
{
/// <summary>
/// 动画名称
/// </summary>
public string Name { get; }
/// <summary>
/// 动画时长
/// </summary>
public float Duration { get; }
}
}