mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 12:02:40 +00:00
15 lines
306 B
C#
15 lines
306 B
C#
using System;
|
|
namespace Globals.Interfaces
|
|
{
|
|
public interface IPloeg
|
|
{
|
|
int Id { get; set; }
|
|
string naam { get; set; }
|
|
int score { get; }
|
|
bool scoreSet { get; }
|
|
event EventHandler scoreChanged;
|
|
void setScore(int i);
|
|
int getScore();
|
|
}
|
|
}
|