diff --git a/Shared/Camera.cs b/Shared/Camera.cs index 4e98729..165ae5a 100644 --- a/Shared/Camera.cs +++ b/Shared/Camera.cs @@ -1,4 +1,4 @@ -using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework; using System; // Good background reading, eventually: diff --git a/Shared/Debug.cs b/Shared/Debug.cs index 22e3663..b89c672 100644 --- a/Shared/Debug.cs +++ b/Shared/Debug.cs @@ -1,4 +1,4 @@ -using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using System.Collections.Generic; diff --git a/Shared/FpsCounter.cs b/Shared/FpsCounter.cs index 73e494b..fff76f7 100644 --- a/Shared/FpsCounter.cs +++ b/Shared/FpsCounter.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace SemiColinGames { class FpsCounter { diff --git a/Shared/History.cs b/Shared/History.cs index d2c5cef..04c6abd 100644 --- a/Shared/History.cs +++ b/Shared/History.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace SemiColinGames { // A History is a queue of fixed length N that records the N most recent items Add()ed to it. diff --git a/Shared/IDisplay.cs b/Shared/IDisplay.cs index 278349d..158915c 100644 --- a/Shared/IDisplay.cs +++ b/Shared/IDisplay.cs @@ -1,4 +1,4 @@ -using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework; namespace SemiColinGames { public interface IDisplay { diff --git a/Shared/Player.cs b/Shared/Player.cs index 67c0db8..da702c5 100644 --- a/Shared/Player.cs +++ b/Shared/Player.cs @@ -1,4 +1,4 @@ -using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using System; diff --git a/Shared/SneakGame.cs b/Shared/SneakGame.cs index 7f80cee..ac7f2d6 100644 --- a/Shared/SneakGame.cs +++ b/Shared/SneakGame.cs @@ -1,4 +1,4 @@ -using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; diff --git a/Shared/World.cs b/Shared/World.cs index 6220462..76e75cb 100644 --- a/Shared/World.cs +++ b/Shared/World.cs @@ -1,4 +1,4 @@ -using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using System; using System.Collections.Generic; diff --git a/SharedTests/HistoryTests.cs b/SharedTests/HistoryTests.cs index ec8891d..caf5cec 100644 --- a/SharedTests/HistoryTests.cs +++ b/SharedTests/HistoryTests.cs @@ -1,4 +1,4 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic;