using System;
using T3.Core.Operator.Slots;
namespace T3.Core.Operator.Interfaces;
///
/// Allows operators to be controlled by a 3d transform gizmo
///
public interface ITransformable
{
IInputSlot TranslationInput { get; }
IInputSlot RotationInput { get; }
IInputSlot ScaleInput { get; }
Action TransformCallback { get; set; }
}