This commit is contained in:
Marcin Badurowicz
2024-10-11 12:09:17 +02:00
commit e5cb768ed1
5 changed files with 95 additions and 0 deletions

14
HighScore.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lab1
{
internal class HighScore
{
public string Name { get; set; }
public int Trials { get; set; }
}
}