From 80902cc6289256bc7969b5096d11b12c88baaded Mon Sep 17 00:00:00 2001 From: ryuga4 Date: Tue, 14 May 2019 21:14:55 +0200 Subject: [PATCH] lepszy best first jeszcze --- Trunk/MonoGameView/Game1.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Trunk/MonoGameView/Game1.cs b/Trunk/MonoGameView/Game1.cs index 6027088..140ba0d 100644 --- a/Trunk/MonoGameView/Game1.cs +++ b/Trunk/MonoGameView/Game1.cs @@ -45,8 +45,8 @@ namespace CzokoŚmieciarka.MonoGameView { graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; - graphics.PreferredBackBufferWidth = 1400; - graphics.PreferredBackBufferHeight = 1000; + graphics.PreferredBackBufferWidth =700; + graphics.PreferredBackBufferHeight =500; } @@ -64,7 +64,7 @@ namespace CzokoŚmieciarka.MonoGameView // TODO: Add your initialization logic here timer = 0f; - mapLoader.Load(out size,out grid,"map2.xml"); + mapLoader.Load(out size,out grid,"map12.xml"); var containers = new List() { new GarbageCollectorContainer( @@ -89,7 +89,7 @@ namespace CzokoŚmieciarka.MonoGameView ), }; - collector = new GarbageCollector(new Coords(0,0), containers, size, size,0); + collector = new GarbageCollector(new Coords(2,1), containers, size, size,0); stepN = 0;