using System; namespace SalsaModel { public interface IHold { bool Left { set; get; } bool Right { set; get; } void MoveGirl(PositionModel.Side girlFoot, PositionModel.Side leadHand, SalsaMover newBoy, SalsaMover girl); void Update(SalsaMover boy, SalsaMover girl); void FixLHandPos(Location to); void UnfixLHandPos(); } }