Files
minesweeper-coop/CoopSweeper/GameTypes/IGame.cs
Marvin Rohrbach bf287ec760 Fix interface
2018-05-25 09:39:46 +02:00

12 lines
171 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper.GameTypes
{
interface IGame
{
IField[][] Map { get; }
}
}