From 1fd19f14dcc4440935936037982478905e90153f Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Tue, 9 Feb 2021 10:14:10 -0500 Subject: [PATCH] add Spider* files to project and SneakGame --- Shared/Shared.projitems | 2 ++ Shared/SneakGame.cs | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Shared/Shared.projitems b/Shared/Shared.projitems index 251e65a..3b319f4 100644 --- a/Shared/Shared.projitems +++ b/Shared/Shared.projitems @@ -10,6 +10,8 @@ + + diff --git a/Shared/SneakGame.cs b/Shared/SneakGame.cs index ff9858c..3e3e453 100644 --- a/Shared/SneakGame.cs +++ b/Shared/SneakGame.cs @@ -66,12 +66,14 @@ namespace SemiColinGames { world?.Dispose(); // world = new SneakWorld(GraphicsDevice, Content.LoadString("levels/demo.json")); // world = new TreeWorld(); - world = new ShmupWorld(); + // world = new ShmupWorld(); + world = new SpiderWorld(); scene?.Dispose(); // scene = new SneakScene(GraphicsDevice, ((SneakWorld) world).Camera); // scene = new TreeScene(GraphicsDevice); - scene = new ShmupScene(GraphicsDevice, ((ShmupWorld) world).Bounds.Size); + // scene = new ShmupScene(GraphicsDevice, ((ShmupWorld) world).Bounds.Size); + scene = new SpiderScene(GraphicsDevice, ((SpiderWorld) world).Bounds.Size); GC.Collect(); GC.WaitForPendingFinalizers();