From d75a469accc2753fe1374ef87e9c2d120f02ff45 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Thu, 9 Jan 2020 12:38:52 -0500 Subject: [PATCH] Move JumpyGame -> SneakGame & fix references GitOrigin-RevId: ec99138000848e4cdcf371b53ce0dd2fe5ebed70 --- Shared/Shared.projitems | 4 ++-- Shared/Shared.shproj | 2 +- Shared/{JumpyGame.cs => SneakGame.cs} | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename Shared/{JumpyGame.cs => SneakGame.cs} (98%) diff --git a/Shared/Shared.projitems b/Shared/Shared.projitems index b84ae77..34da443 100644 --- a/Shared/Shared.projitems +++ b/Shared/Shared.projitems @@ -15,8 +15,8 @@ - + - \ No newline at end of file + diff --git a/Shared/Shared.shproj b/Shared/Shared.shproj index 84b342e..0fe5f7d 100644 --- a/Shared/Shared.shproj +++ b/Shared/Shared.shproj @@ -14,7 +14,7 @@ - + diff --git a/Shared/JumpyGame.cs b/Shared/SneakGame.cs similarity index 98% rename from Shared/JumpyGame.cs rename to Shared/SneakGame.cs index a10f456..f8c0f65 100644 --- a/Shared/JumpyGame.cs +++ b/Shared/SneakGame.cs @@ -6,7 +6,7 @@ using System; using System.Collections.Generic; namespace SemiColinGames { - public class JumpyGame : Game { + public class SneakGame : Game { GraphicsDeviceManager graphics; // TODO: use a History but implement functions that let us re-use the @@ -31,7 +31,7 @@ namespace SemiColinGames { World world; Camera camera = new Camera(); - public JumpyGame() { + public SneakGame() { graphics = new GraphicsDeviceManager(this); IsMouseVisible = true; Content.RootDirectory = "Content";