SynthMaze/Library/PackageCache/com.unity.2d.animation@7.0.12/Editor/SkinningModule/Selection/ITransformSelection.cs
2024-04-28 11:26:46 +02:00

11 lines
224 B
C#

using System;
using UnityEngine;
namespace UnityEditor.U2D.Animation
{
internal interface ITransformSelection<T> : ISelection<T> where T : TransformCache
{
T root { get; }
T[] roots { get; }
}
}