From 44e57d93230274ec2597c84bd4e3536c14f8964c Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 12 Aug 2019 00:59:55 +0200 Subject: [PATCH] rename tests to examples --- {Tests => Examples}/Content/Content.mgcb | 0 .../Content/Fonts/TestFont.spritefont | 0 {Tests => Examples}/Content/Textures/Test.png | Bin Tests/Tests.csproj => Examples/Examples.csproj | 0 {Tests => Examples}/GameImpl.cs | 4 +--- {Tests => Examples}/Program.cs | 4 +--- MLEM.sln | 2 +- 7 files changed, 3 insertions(+), 7 deletions(-) rename {Tests => Examples}/Content/Content.mgcb (100%) rename {Tests => Examples}/Content/Fonts/TestFont.spritefont (100%) rename {Tests => Examples}/Content/Textures/Test.png (100%) rename Tests/Tests.csproj => Examples/Examples.csproj (100%) rename {Tests => Examples}/GameImpl.cs (97%) rename {Tests => Examples}/Program.cs (81%) diff --git a/Tests/Content/Content.mgcb b/Examples/Content/Content.mgcb similarity index 100% rename from Tests/Content/Content.mgcb rename to Examples/Content/Content.mgcb diff --git a/Tests/Content/Fonts/TestFont.spritefont b/Examples/Content/Fonts/TestFont.spritefont similarity index 100% rename from Tests/Content/Fonts/TestFont.spritefont rename to Examples/Content/Fonts/TestFont.spritefont diff --git a/Tests/Content/Textures/Test.png b/Examples/Content/Textures/Test.png similarity index 100% rename from Tests/Content/Textures/Test.png rename to Examples/Content/Textures/Test.png diff --git a/Tests/Tests.csproj b/Examples/Examples.csproj similarity index 100% rename from Tests/Tests.csproj rename to Examples/Examples.csproj diff --git a/Tests/GameImpl.cs b/Examples/GameImpl.cs similarity index 97% rename from Tests/GameImpl.cs rename to Examples/GameImpl.cs index 2208b86..2fd71d7 100644 --- a/Tests/GameImpl.cs +++ b/Examples/GameImpl.cs @@ -3,8 +3,6 @@ using System.Collections.Generic; using Coroutine; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Microsoft.Xna.Framework.Input; -using MLEM.Extended.Extensions; using MLEM.Font; using MLEM.Input; using MLEM.Startup; @@ -13,7 +11,7 @@ using MLEM.Ui; using MLEM.Ui.Elements; using MLEM.Ui.Style; -namespace Tests { +namespace Examples { public class GameImpl : MlemGame { private Texture2D testTexture; diff --git a/Tests/Program.cs b/Examples/Program.cs similarity index 81% rename from Tests/Program.cs rename to Examples/Program.cs index e5cb607..4b07ab5 100644 --- a/Tests/Program.cs +++ b/Examples/Program.cs @@ -1,6 +1,4 @@ -using System; - -namespace Tests { +namespace Examples { public static class Program { public static void Main() { diff --git a/MLEM.sln b/MLEM.sln index fd155a4..f3c27ee 100644 --- a/MLEM.sln +++ b/MLEM.sln @@ -6,7 +6,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLEM.Extended", "MLEM.Exten EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLEM.Startup", "MLEM.Startup\MLEM.Startup.csproj", "{997F4739-7BEC-4621-B9CA-68DEB2D74412}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{1BC4682B-AA14-4937-B5C7-707E20FE88FF}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples", "Examples\Examples.csproj", "{1BC4682B-AA14-4937-B5C7-707E20FE88FF}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLEM.Ui", "MLEM.Ui\MLEM.Ui.csproj", "{6F00629A-8B87-4264-8896-19983285E32F}" EndProject