From cc37561076105b4669cea20b956072c657978a3a Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Tue, 14 Jan 2020 17:43:39 -0500 Subject: [PATCH] run dos2unix on all source files GitOrigin-RevId: c65ff59d86415057167f600d1c31545b1ff0b49b --- Shared/Camera.cs | 2 +- Shared/Debug.cs | 2 +- Shared/FpsCounter.cs | 2 +- Shared/History.cs | 2 +- Shared/IDisplay.cs | 2 +- Shared/Player.cs | 2 +- Shared/SneakGame.cs | 2 +- Shared/World.cs | 2 +- SharedTests/HistoryTests.cs | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) 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;