Finished scoring system and started tests

This commit is contained in:
KäseToatz
2024-11-06 21:46:37 +01:00
parent 23ae45ba91
commit af7457a9d9
13 changed files with 265 additions and 50 deletions

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

@ -0,0 +1,8 @@
namespace Memory.Logic
{
public class Score(string name, int points)
{
public string Name { get; } = name;
public int Points { get; set; } = points;
}
}