Events added for ploegen.cs (reset json files for next boot)

This commit is contained in:
Beppe
2019-08-03 21:29:23 +02:00
parent b3a4a7441a
commit 1fb0e5801b
5 changed files with 68 additions and 16 deletions

View File

@@ -5,7 +5,10 @@ namespace Globals.Interfaces
{
int Id { get; set; }
string naam { get; set; }
int score { get; set; }
int score { get; }
bool scoreSet { get; }
event EventHandler scoreChanged;
void setScore(int i);
int getScore();
}
}