22 lines
374 B
C#
22 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpineViewer.Spine
|
|
{
|
|
/// <summary>
|
|
/// 骨骼预览器
|
|
/// </summary>
|
|
class Previewer
|
|
{
|
|
private readonly Panel panel;
|
|
|
|
public Previewer(Panel panel)
|
|
{
|
|
this.panel = panel;
|
|
}
|
|
}
|
|
}
|