Add Scoreboard abstraction

This commit is contained in:
Andrew Cooper
2022-03-30 10:30:44 +11:00
parent 9106c2e13c
commit 74698c41c4
4 changed files with 124 additions and 76 deletions

View File

@@ -0,0 +1,6 @@
namespace Basketball;
internal record Team(string Name)
{
public override string ToString() => Name;
}