mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 12:02:40 +00:00
17 lines
299 B
C#
17 lines
299 B
C#
using System;
|
|
using Globals.classes;
|
|
using static Globals.main;
|
|
|
|
namespace Globals.Interfaces
|
|
{
|
|
public interface IGame
|
|
{
|
|
int Id { get; set; }
|
|
Ploeg home { get; set; }
|
|
Ploeg away { get; set; }
|
|
DateTime date { get; set; }
|
|
state getWinner();
|
|
|
|
}
|
|
}
|