using System; using System.Collections.Generic; using System.Text; using SalsaModel.Actions; namespace SalsaModel.Sequences { [Sequence("Lady's half-right half-left and SR turn")] public class SRTurnHalfLeftHalfRight : ISequenceProvider { public void AddMoves(SalsaModel.Scheduling.TimeLine _timeLine, double from, SalsaMover Boy, SalsaMover Girl) { CompositeActions.OneBasicBoy(_timeLine, from, Boy); CompositeActions.HalfRightHalfLeft(_timeLine, from, Girl); //CompositeActions.TurnOnTheSpot(_timeLine, from, Girl); CompositeActions.OneBasicBoy(_timeLine, from + 8, Boy); //CompositeActions.TurnOnTheSpot(_timeLine, from+8, Girl); CompositeActions.SingleRightTurn(_timeLine, from + 8, Girl); } } }