From 3be391802aa3fa9cf7d744e464bf6465ec9301ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Wed, 30 Apr 2014 18:28:26 +0200 Subject: [PATCH] Tile size 32x32 --- src/Gui/Gui.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Gui.cs b/src/Gui/Gui.cs index 0858fb7..8adfd09 100644 --- a/src/Gui/Gui.cs +++ b/src/Gui/Gui.cs @@ -7,7 +7,7 @@ namespace WorldOfPeacecraft { class Gui : Form, IGui { - private const int tileSize = 16; + private const int tileSize = 32; private const int entitySize = 10; private IBackend Backend;