diff --git a/README.md b/README.md index 5874d4c..97afbd5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Welcome to the *Splitter* Code Competion repo. ## Game -The idea and rules of the game can be found [here](GAME.md) +The idea and rules of the game can be found [here](docs/GAME.md) ## Goal :goal_net: @@ -29,7 +29,7 @@ Ofcourse it's okay to team up. Share your idea's and approaches in your team! This time we also introduce an Semi-Open Competition. The members of the Semi-Open Competition will compete in two rounds. After the first round, everyone's code is shared. -Read [more about the semi-open competition](OPENCOMP.md). +Read [more about the semi-open competition](docs/OPENCOMP.md). ## Submission diff --git a/Source/Splitter.sln b/Splitter.sln similarity index 83% rename from Source/Splitter.sln rename to Splitter.sln index 28e3e77..413a0c8 100644 --- a/Source/Splitter.sln +++ b/Splitter.sln @@ -3,11 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34525.116 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tester", "Tester\Tester.csproj", "{2EB7056D-1F6F-40EC-9660-A4BA799D8766}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tester", "src\Tester\Tester.csproj", "{2EB7056D-1F6F-40EC-9660-A4BA799D8766}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example", "Example\Example.csproj", "{68395DAB-5219-4C0B-9515-E651978E768F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example", "src\Example\Example.csproj", "{68395DAB-5219-4C0B-9515-E651978E768F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{56EFB02F-81EA-4A9E-84E3-7D1BE5426DF4}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "src\Tests\Tests.csproj", "{56EFB02F-81EA-4A9E-84E3-7D1BE5426DF4}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/GAME.md b/docs/GAME.md similarity index 100% rename from GAME.md rename to docs/GAME.md diff --git a/MOVES.md b/docs/MOVES.md similarity index 100% rename from MOVES.md rename to docs/MOVES.md diff --git a/OPENCOMP.md b/docs/OPENCOMP.md similarity index 100% rename from OPENCOMP.md rename to docs/OPENCOMP.md diff --git a/board1.jpg b/docs/board1.jpg similarity index 100% rename from board1.jpg rename to docs/board1.jpg diff --git a/boardLayout1.png b/docs/boardLayout1.png similarity index 100% rename from boardLayout1.png rename to docs/boardLayout1.png diff --git a/endState.png b/docs/endState.png similarity index 100% rename from endState.png rename to docs/endState.png diff --git a/gridPicture.png b/docs/gridPicture.png similarity index 100% rename from gridPicture.png rename to docs/gridPicture.png diff --git a/movesImages/move2.png b/docs/movesImages/move2.png similarity index 100% rename from movesImages/move2.png rename to docs/movesImages/move2.png diff --git a/movesImages/move3.png b/docs/movesImages/move3.png similarity index 100% rename from movesImages/move3.png rename to docs/movesImages/move3.png diff --git a/movesImages/move4.png b/docs/movesImages/move4.png similarity index 100% rename from movesImages/move4.png rename to docs/movesImages/move4.png diff --git a/movesImages/moveWrong.png b/docs/movesImages/moveWrong.png similarity index 100% rename from movesImages/moveWrong.png rename to docs/movesImages/moveWrong.png diff --git a/movesImages/specVal1.png b/docs/movesImages/specVal1.png similarity index 100% rename from movesImages/specVal1.png rename to docs/movesImages/specVal1.png diff --git a/movesImages/specVal2.png b/docs/movesImages/specVal2.png similarity index 100% rename from movesImages/specVal2.png rename to docs/movesImages/specVal2.png diff --git a/movesImages/specVal3.png b/docs/movesImages/specVal3.png similarity index 100% rename from movesImages/specVal3.png rename to docs/movesImages/specVal3.png diff --git a/movesImages/specValExample.png b/docs/movesImages/specValExample.png similarity index 100% rename from movesImages/specValExample.png rename to docs/movesImages/specValExample.png diff --git a/Source/Example/Example.csproj b/src/Example/Example.csproj similarity index 100% rename from Source/Example/Example.csproj rename to src/Example/Example.csproj diff --git a/Source/Example/Program.cs b/src/Example/Program.cs similarity index 100% rename from Source/Example/Program.cs rename to src/Example/Program.cs diff --git a/Source/Tester/Game.cs b/src/Tester/Game.cs similarity index 100% rename from Source/Tester/Game.cs rename to src/Tester/Game.cs diff --git a/Source/Tester/Grid.cs b/src/Tester/Grid.cs similarity index 100% rename from Source/Tester/Grid.cs rename to src/Tester/Grid.cs diff --git a/Source/Tester/Grids.cs b/src/Tester/Grids.cs similarity index 100% rename from Source/Tester/Grids.cs rename to src/Tester/Grids.cs diff --git a/Source/Tester/Logger.cs b/src/Tester/Logger.cs similarity index 100% rename from Source/Tester/Logger.cs rename to src/Tester/Logger.cs diff --git a/Source/Tester/Matrix.cs b/src/Tester/Matrix.cs similarity index 100% rename from Source/Tester/Matrix.cs rename to src/Tester/Matrix.cs diff --git a/Source/Tester/Point.cs b/src/Tester/Point.cs similarity index 100% rename from Source/Tester/Point.cs rename to src/Tester/Point.cs diff --git a/Source/Tester/Points.cs b/src/Tester/Points.cs similarity index 100% rename from Source/Tester/Points.cs rename to src/Tester/Points.cs diff --git a/Source/Tester/Program.cs b/src/Tester/Program.cs similarity index 100% rename from Source/Tester/Program.cs rename to src/Tester/Program.cs diff --git a/Source/Tester/Properties/launchSettings.json b/src/Tester/Properties/launchSettings.json similarity index 100% rename from Source/Tester/Properties/launchSettings.json rename to src/Tester/Properties/launchSettings.json diff --git a/Source/Tester/Tester.csproj b/src/Tester/Tester.csproj similarity index 100% rename from Source/Tester/Tester.csproj rename to src/Tester/Tester.csproj diff --git a/Source/Tests/GameTests.cs b/src/Tests/GameTests.cs similarity index 100% rename from Source/Tests/GameTests.cs rename to src/Tests/GameTests.cs diff --git a/Source/Tests/GlobalUsings.cs b/src/Tests/GlobalUsings.cs similarity index 100% rename from Source/Tests/GlobalUsings.cs rename to src/Tests/GlobalUsings.cs diff --git a/Source/Tests/ScoreTests.cs b/src/Tests/ScoreTests.cs similarity index 100% rename from Source/Tests/ScoreTests.cs rename to src/Tests/ScoreTests.cs diff --git a/Source/Tests/Tests.csproj b/src/Tests/Tests.csproj similarity index 100% rename from Source/Tests/Tests.csproj rename to src/Tests/Tests.csproj diff --git a/Source/typescript/.gitignore b/src/typescript/.gitignore similarity index 100% rename from Source/typescript/.gitignore rename to src/typescript/.gitignore diff --git a/Source/typescript/README.md b/src/typescript/README.md similarity index 100% rename from Source/typescript/README.md rename to src/typescript/README.md diff --git a/Source/typescript/bun.lockb b/src/typescript/bun.lockb similarity index 100% rename from Source/typescript/bun.lockb rename to src/typescript/bun.lockb diff --git a/Source/typescript/index.ts b/src/typescript/index.ts similarity index 100% rename from Source/typescript/index.ts rename to src/typescript/index.ts diff --git a/Source/typescript/package.json b/src/typescript/package.json similarity index 100% rename from Source/typescript/package.json rename to src/typescript/package.json diff --git a/Source/typescript/tsconfig.json b/src/typescript/tsconfig.json similarity index 100% rename from Source/typescript/tsconfig.json rename to src/typescript/tsconfig.json