Fixed all requirements

This commit is contained in:
KäseToatz
2024-11-07 01:52:51 +01:00
parent af7457a9d9
commit 0121584708
20 changed files with 171 additions and 69 deletions

8
Memory.Logic/Deck.cs Normal file
View File

@ -0,0 +1,8 @@
namespace Memory.Logic
{
public class Deck(int columns, int rows)
{
public int Columns { get; } = columns;
public int Rows { get; } = rows;
}
}