Files
stas-barecky/Library/PackageCache/com.unity.2d.animation@3c53dae92956/Editor/SkinningModule/Selection/ITransformSelection.cs
2026-01-08 20:43:08 +05:00

12 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; }
}
}