run dos2unix on all source files

GitOrigin-RevId: c65ff59d86415057167f600d1c31545b1ff0b49b
This commit is contained in:
Colin McMillen 2020-01-14 17:43:39 -05:00
parent 960521a6e0
commit cc37561076
9 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using System; using System;
// Good background reading, eventually: // Good background reading, eventually:

View File

@ -1,4 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,4 +1,4 @@
using System; using System;
namespace SemiColinGames { namespace SemiColinGames {
class FpsCounter { class FpsCounter {

View File

@ -1,4 +1,4 @@
using System; using System;
namespace SemiColinGames { namespace SemiColinGames {
// A History is a queue of fixed length N that records the N most recent items Add()ed to it. // A History is a queue of fixed length N that records the N most recent items Add()ed to it.

View File

@ -1,4 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
namespace SemiColinGames { namespace SemiColinGames {
public interface IDisplay { public interface IDisplay {

View File

@ -1,4 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Input;
using System; using System;

View File

@ -1,4 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Input;

View File

@ -1,4 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,4 +1,4 @@
using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.VisualStudio.TestTools.UnitTesting;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;