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