From 39ac88b60af32c3f9307ab0fc69599e2c4588bf8 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 16 Nov 2020 14:43:21 -0500 Subject: [PATCH] switch back to Sneak as the default game --- Shared/SneakGame.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Shared/SneakGame.cs b/Shared/SneakGame.cs index 890969d..05d0946 100644 --- a/Shared/SneakGame.cs +++ b/Shared/SneakGame.cs @@ -64,11 +64,11 @@ namespace SemiColinGames { private void LoadLevel() { world?.Dispose(); - // world = new SneakWorld(GraphicsDevice, Content.LoadString("levels/demo.json")); - world = new TreeWorld(); + world = new SneakWorld(GraphicsDevice, Content.LoadString("levels/demo.json")); + // world = new TreeWorld(); scene?.Dispose(); - // scene = new SneakScene(GraphicsDevice, ((SneakWorld) world).Camera); - scene = new TreeScene(GraphicsDevice); + scene = new SneakScene(GraphicsDevice, ((SneakWorld) world).Camera); + // scene = new TreeScene(GraphicsDevice); GC.Collect(); GC.WaitForPendingFinalizers();