24 lines
555 B
C#
24 lines
555 B
C#
using Spine.SpineWrappers;
|
|
using SpineRuntime21;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Spine.Implementations.SpineWrappers.V21
|
|
{
|
|
internal sealed class Animation21(Animation innerObject) : IAnimation
|
|
{
|
|
private readonly Animation _o = innerObject;
|
|
|
|
public Animation InnerObject => _o;
|
|
|
|
public string Name => _o.Name;
|
|
|
|
public float Duration => _o.Duration;
|
|
|
|
public override string ToString() => _o.ToString();
|
|
}
|
|
}
|