Files
tictactoe/Gameplay/Contacts/Shift1ColumnRight.cs

7 lines
135 B
C#

public partial class Shift1ColumnRight : Contact
{
public override void CallAction()
{
_player.ShiftCells(0,1);
}
}