Files
tictactoe/Gameplay/Contacts/Shift1ColumnRight.cs
2026-01-25 21:04:47 -05:00

7 lines
135 B
C#

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