From 889ae5235f7ac6511245eafa8216f0fd3095d0af Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Fri, 25 May 2018 09:38:27 +0200 Subject: [PATCH] updated game interface --- CoopSweeper/GameTypes/IGame.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/CoopSweeper/GameTypes/IGame.cs b/CoopSweeper/GameTypes/IGame.cs index ec8e0be..8743242 100644 --- a/CoopSweeper/GameTypes/IGame.cs +++ b/CoopSweeper/GameTypes/IGame.cs @@ -6,5 +6,6 @@ namespace CoopSweeper.GameTypes { interface IGame { + public IField[][] Map { get; protected set; } } }