Finished scoring system and started tests
This commit is contained in:
8
Memory.Logic/Score.cs
Normal file
8
Memory.Logic/Score.cs
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user