11 lines
178 B
C#
11 lines
178 B
C#
using System;
|
|
|
|
namespace UnityEditor.Animations.Rigging
|
|
{
|
|
interface IRigEffectorOverlay : IDisposable
|
|
{
|
|
bool IsValid();
|
|
void OnSceneGUIOverlay();
|
|
}
|
|
}
|