9 lines
171 B
C#
9 lines
171 B
C#
|
// Designed by KINEMATION, 2024.
|
||
|
|
||
|
namespace KINEMATION.MotionWarping.Editor.Widgets
|
||
|
{
|
||
|
public interface IWarpWidgetInterface
|
||
|
{
|
||
|
public void Render();
|
||
|
}
|
||
|
}
|