diff --git a/.vs/ProjectEvaluation/tic-tac-toe.metadata.v5.1 b/.vs/ProjectEvaluation/tic-tac-toe.metadata.v5.1 index b4980a3..93ef3b5 100644 Binary files a/.vs/ProjectEvaluation/tic-tac-toe.metadata.v5.1 and b/.vs/ProjectEvaluation/tic-tac-toe.metadata.v5.1 differ diff --git a/.vs/ProjectEvaluation/tic-tac-toe.projects.v5.1 b/.vs/ProjectEvaluation/tic-tac-toe.projects.v5.1 index 9ce4878..b39933d 100644 Binary files a/.vs/ProjectEvaluation/tic-tac-toe.projects.v5.1 and b/.vs/ProjectEvaluation/tic-tac-toe.projects.v5.1 differ diff --git a/.vs/Tic-Tac-Toe/DesignTimeBuild/.dtbcache.v2 b/.vs/Tic-Tac-Toe/DesignTimeBuild/.dtbcache.v2 index 01499cd..d99d7e8 100644 Binary files a/.vs/Tic-Tac-Toe/DesignTimeBuild/.dtbcache.v2 and b/.vs/Tic-Tac-Toe/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Tic-Tac-Toe/FileContentIndex/3b244d9f-ddc1-4260-a46f-91a348992d1b.vsidx b/.vs/Tic-Tac-Toe/FileContentIndex/3b244d9f-ddc1-4260-a46f-91a348992d1b.vsidx deleted file mode 100644 index ade3fbd..0000000 Binary files a/.vs/Tic-Tac-Toe/FileContentIndex/3b244d9f-ddc1-4260-a46f-91a348992d1b.vsidx and /dev/null differ diff --git a/.vs/Tic-Tac-Toe/FileContentIndex/8b8cda80-f088-4a3e-824d-d782c4afee09.vsidx b/.vs/Tic-Tac-Toe/FileContentIndex/48ed73f1-c6e1-43f6-a266-4871648da8fe.vsidx similarity index 95% rename from .vs/Tic-Tac-Toe/FileContentIndex/8b8cda80-f088-4a3e-824d-d782c4afee09.vsidx rename to .vs/Tic-Tac-Toe/FileContentIndex/48ed73f1-c6e1-43f6-a266-4871648da8fe.vsidx index 2314343..69ff360 100644 Binary files a/.vs/Tic-Tac-Toe/FileContentIndex/8b8cda80-f088-4a3e-824d-d782c4afee09.vsidx and b/.vs/Tic-Tac-Toe/FileContentIndex/48ed73f1-c6e1-43f6-a266-4871648da8fe.vsidx differ diff --git a/.vs/Tic-Tac-Toe/FileContentIndex/a5f192e1-1040-4375-b72b-658caf62b1ab.vsidx b/.vs/Tic-Tac-Toe/FileContentIndex/a5f192e1-1040-4375-b72b-658caf62b1ab.vsidx new file mode 100644 index 0000000..da4c1b7 Binary files /dev/null and b/.vs/Tic-Tac-Toe/FileContentIndex/a5f192e1-1040-4375-b72b-658caf62b1ab.vsidx differ diff --git a/.vs/Tic-Tac-Toe/v17/.futdcache.v2 b/.vs/Tic-Tac-Toe/v17/.futdcache.v2 index 727af26..3704113 100644 Binary files a/.vs/Tic-Tac-Toe/v17/.futdcache.v2 and b/.vs/Tic-Tac-Toe/v17/.futdcache.v2 differ diff --git a/.vs/Tic-Tac-Toe/v17/.suo b/.vs/Tic-Tac-Toe/v17/.suo index 8a45e43..74a7c07 100644 Binary files a/.vs/Tic-Tac-Toe/v17/.suo and b/.vs/Tic-Tac-Toe/v17/.suo differ diff --git a/Tic-Tac-Toe/Game1.cs b/Tic-Tac-Toe/Game1.cs index b1fdcbe..9146da2 100644 --- a/Tic-Tac-Toe/Game1.cs +++ b/Tic-Tac-Toe/Game1.cs @@ -17,7 +17,7 @@ namespace Tic_Tac_Toe { private List X4PosList; private int lineThickness = 5; private int playerWon = 0; //1 is circle 2 is x - private bool isCircleNext = true; //basically start player here + private bool isCircleNext = false; //basically start player here public Game1() { _graphics = new GraphicsDeviceManager(this); @@ -294,6 +294,15 @@ namespace Tic_Tac_Toe { } //reverse diagonal + //circle + if (CircleXPostion[0,2] == 1 && CircleXPostion[1,1] == 1 && CircleXPostion[2,0] == 1) { + playerWon = 1; + return; + }else if(CircleXPostion[0, 2] == 2 && CircleXPostion[1, 1] == 2 && CircleXPostion[2, 0] == 2) { + playerWon = 2; + return; + } + } } } \ No newline at end of file diff --git a/Tic-Tac-Toe/Tic-Tac-Toe.csproj b/Tic-Tac-Toe/Tic-Tac-Toe.csproj index 8f41629..5a84361 100644 --- a/Tic-Tac-Toe/Tic-Tac-Toe.csproj +++ b/Tic-Tac-Toe/Tic-Tac-Toe.csproj @@ -1,6 +1,6 @@ - + - Exe + WinExe net6.0 Major false @@ -8,12 +8,15 @@ app.manifest - Icon.ico + tic-tac-toe.ico + + + diff --git a/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.dll b/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.dll index 769206b..ad9aef4 100644 Binary files a/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.dll and b/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.exe b/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.exe index d840313..a5742c1 100644 Binary files a/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.exe and b/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.exe differ diff --git a/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.pdb b/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.pdb index 4dd0363..0dc79b3 100644 Binary files a/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.pdb and b/Tic-Tac-Toe/bin/Debug/net6.0/Tic-Tac-Toe.pdb differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/Circle win text.xnb b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/Circle win text.xnb new file mode 100644 index 0000000..368a489 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/Circle win text.xnb differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/Cross win text.xnb b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/Cross win text.xnb new file mode 100644 index 0000000..6a4df24 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/Cross win text.xnb differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/X.xnb b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/X.xnb new file mode 100644 index 0000000..651288c Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/X.xnb differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/circle.xnb b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/circle.xnb new file mode 100644 index 0000000..0c9407a Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Content/Textures/circle.xnb differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/MonoGame.Extended.dll b/Tic-Tac-Toe/bin/Release/net6.0/MonoGame.Extended.dll new file mode 100644 index 0000000..7c1b5f3 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/MonoGame.Extended.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/MonoGame.Framework.dll b/Tic-Tac-Toe/bin/Release/net6.0/MonoGame.Framework.dll new file mode 100644 index 0000000..1f77444 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/MonoGame.Framework.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Newtonsoft.Json.dll b/Tic-Tac-Toe/bin/Release/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..b501fb6 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Newtonsoft.Json.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.deps.json b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.deps.json new file mode 100644 index 0000000..f7a01ed --- /dev/null +++ b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.deps.json @@ -0,0 +1,126 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Tic-Tac-Toe/1.0.0": { + "dependencies": { + "MonoGame.Content.Builder.Task": "3.8.1.303", + "MonoGame.Extended": "3.8.0", + "MonoGame.Framework.DesktopGL": "3.8.1.303" + }, + "runtime": { + "Tic-Tac-Toe.dll": {} + } + }, + "MonoGame.Content.Builder.Task/3.8.1.303": {}, + "MonoGame.Extended/3.8.0": { + "dependencies": { + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/MonoGame.Extended.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "MonoGame.Framework.DesktopGL/3.8.1.303": { + "runtime": { + "lib/net6.0/MonoGame.Framework.dll": { + "assemblyVersion": "3.8.1.303", + "fileVersion": "3.8.1.303" + } + }, + "runtimeTargets": { + "runtimes/linux-x64/native/libSDL2-2.0.so.0": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libopenal.so.1": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libSDL2.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libopenal.1.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/SDL2.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.0.20.0" + }, + "runtimes/win-x64/native/soft_oal.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/SDL2.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.0.20.0" + }, + "runtimes/win-x86/native/soft_oal.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Newtonsoft.Json/12.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.3.23909" + } + } + } + } + }, + "libraries": { + "Tic-Tac-Toe/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MonoGame.Content.Builder.Task/3.8.1.303": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9Ilzzje62LhWElbPNEl7vh7XsRSbze+lvCJdZtTZUGu48FRgvYN6THURwIB9PN98EI33/Wnf6iuShNUtD7hL4Q==", + "path": "monogame.content.builder.task/3.8.1.303", + "hashPath": "monogame.content.builder.task.3.8.1.303.nupkg.sha512" + }, + "MonoGame.Extended/3.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FDPoUOFtslGNHCWSqjKD0C67RYN6Stb6NWnn+rkCmtkPBZlE6LvwuGyQBkHUkAMANO3LzO/Wsz9etMhwZLInqg==", + "path": "monogame.extended/3.8.0", + "hashPath": "monogame.extended.3.8.0.nupkg.sha512" + }, + "MonoGame.Framework.DesktopGL/3.8.1.303": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eGYhqn0n1olk8MNYeE9EuBmoNNECN1T18rPMaQpkzsEQ0H3nVyFPXC+uCo78v5pi5juQpJ3PSFnSkjzZJ1U58A==", + "path": "monogame.framework.desktopgl/3.8.1.303", + "hashPath": "monogame.framework.desktopgl.3.8.1.303.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "path": "newtonsoft.json/12.0.3", + "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.dll b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.dll new file mode 100644 index 0000000..9776086 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.exe b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.exe new file mode 100644 index 0000000..a5742c1 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.exe differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.pdb b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.pdb new file mode 100644 index 0000000..ce29918 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.pdb differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.runtimeconfig.json b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.runtimeconfig.json new file mode 100644 index 0000000..efcc36e --- /dev/null +++ b/Tic-Tac-Toe/bin/Release/net6.0/Tic-Tac-Toe.runtimeconfig.json @@ -0,0 +1,14 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "rollForward": "Major", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.TieredCompilation": false + } + } +} \ No newline at end of file diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/linux-x64/native/libSDL2-2.0.so.0 b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/linux-x64/native/libSDL2-2.0.so.0 new file mode 100644 index 0000000..986e2fa Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/linux-x64/native/libSDL2-2.0.so.0 differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/linux-x64/native/libopenal.so.1 b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/linux-x64/native/libopenal.so.1 new file mode 100644 index 0000000..af45fd0 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/linux-x64/native/libopenal.so.1 differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/osx/native/libSDL2.dylib b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/osx/native/libSDL2.dylib new file mode 100644 index 0000000..416608b Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/osx/native/libSDL2.dylib differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/osx/native/libopenal.1.dylib b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/osx/native/libopenal.1.dylib new file mode 100644 index 0000000..a0711fe Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/osx/native/libopenal.1.dylib differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x64/native/SDL2.dll b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x64/native/SDL2.dll new file mode 100644 index 0000000..50cc664 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x64/native/SDL2.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x64/native/soft_oal.dll b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x64/native/soft_oal.dll new file mode 100644 index 0000000..02027ee Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x64/native/soft_oal.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x86/native/SDL2.dll b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x86/native/SDL2.dll new file mode 100644 index 0000000..eb8de66 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x86/native/SDL2.dll differ diff --git a/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x86/native/soft_oal.dll b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x86/native/soft_oal.dll new file mode 100644 index 0000000..5dbbbe8 Binary files /dev/null and b/Tic-Tac-Toe/bin/Release/net6.0/runtimes/win-x86/native/soft_oal.dll differ diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache index 247580a..8e443c5 100644 Binary files a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache and b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache differ diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt index 9777a55..b00c518 100644 --- a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt +++ b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt @@ -27,7 +27,9 @@ C:\dev\Tic-Tac-Toe\Tic-Tac-Toe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\cir C:\dev\Tic-Tac-Toe\Tic-Tac-Toe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\X.xnb C:\dev\Tic-Tac-Toe\Tic-Tac-Toe\Tic-Tac-Toe\bin\Debug\net6.0\MonoGame.Extended.dll C:\dev\Tic-Tac-Toe\Tic-Tac-Toe\Tic-Tac-Toe\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\Circle win text.xnb C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\circle.xnb +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\Cross win text.xnb C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\X.xnb C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Tic-Tac-Toe.exe C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Tic-Tac-Toe.deps.json @@ -56,5 +58,3 @@ C:\dev\TicTacToe\Tic-Tac-Toe\obj\Debug\net6.0\refint\Tic-Tac-Toe.dll C:\dev\TicTacToe\Tic-Tac-Toe\obj\Debug\net6.0\Tic-Tac-Toe.pdb C:\dev\TicTacToe\Tic-Tac-Toe\obj\Debug\net6.0\Tic-Tac-Toe.genruntimeconfig.cache C:\dev\TicTacToe\Tic-Tac-Toe\obj\Debug\net6.0\ref\Tic-Tac-Toe.dll -C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\Circle win text.xnb -C:\dev\TicTacToe\Tic-Tac-Toe\bin\Debug\net6.0\Content\Textures\Cross win text.xnb diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.dll b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.dll index 769206b..ad9aef4 100644 Binary files a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.dll and b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.pdb b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.pdb index 4dd0363..0dc79b3 100644 Binary files a/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.pdb and b/Tic-Tac-Toe/obj/Debug/net6.0/Tic-Tac-Toe.pdb differ diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/apphost.exe b/Tic-Tac-Toe/obj/Debug/net6.0/apphost.exe index d840313..a5742c1 100644 Binary files a/Tic-Tac-Toe/obj/Debug/net6.0/apphost.exe and b/Tic-Tac-Toe/obj/Debug/net6.0/apphost.exe differ diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/ref/Tic-Tac-Toe.dll b/Tic-Tac-Toe/obj/Debug/net6.0/ref/Tic-Tac-Toe.dll index 5547903..a0d8d16 100644 Binary files a/Tic-Tac-Toe/obj/Debug/net6.0/ref/Tic-Tac-Toe.dll and b/Tic-Tac-Toe/obj/Debug/net6.0/ref/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/obj/Debug/net6.0/refint/Tic-Tac-Toe.dll b/Tic-Tac-Toe/obj/Debug/net6.0/refint/Tic-Tac-Toe.dll index 5547903..a0d8d16 100644 Binary files a/Tic-Tac-Toe/obj/Debug/net6.0/refint/Tic-Tac-Toe.dll and b/Tic-Tac-Toe/obj/Debug/net6.0/refint/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Tic-Tac-Toe/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.AssemblyInfo.cs b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.AssemblyInfo.cs new file mode 100644 index 0000000..3cb00ea --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Tic-Tac-Toe")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Tic-Tac-Toe")] +[assembly: System.Reflection.AssemblyTitleAttribute("Tic-Tac-Toe")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.AssemblyInfoInputs.cache b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c00ed16 --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4df3e5c86fd5162c528007d1757bc46d9c89350c diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.GeneratedMSBuildEditorConfig.editorconfig b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..87e1003 --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Tic-Tac-Toe +build_property.ProjectDir = C:\dev\TicTacToe\Tic-Tac-Toe\ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.assets.cache b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.assets.cache new file mode 100644 index 0000000..0631a4c Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.assets.cache differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8e443c5 Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.AssemblyReference.cache differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.CopyComplete b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.CoreCompileInputs.cache b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..08ffe07 --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +fb1d74c3fec8728dd67e5c62ca0becfea65b0892 diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..21df8e1 --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Content\Textures\Circle win text.xnb +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Content\Textures\circle.xnb +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Content\Textures\Cross win text.xnb +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Content\Textures\X.xnb +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Tic-Tac-Toe.exe +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Tic-Tac-Toe.deps.json +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Tic-Tac-Toe.runtimeconfig.json +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Tic-Tac-Toe.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Tic-Tac-Toe.pdb +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\MonoGame.Extended.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\MonoGame.Framework.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\Newtonsoft.Json.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\linux-x64\native\libSDL2-2.0.so.0 +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\linux-x64\native\libopenal.so.1 +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\osx\native\libSDL2.dylib +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\osx\native\libopenal.1.dylib +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\win-x64\native\SDL2.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\win-x64\native\soft_oal.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\win-x86\native\SDL2.dll +C:\dev\TicTacToe\Tic-Tac-Toe\bin\Release\net6.0\runtimes\win-x86\native\soft_oal.dll +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.csproj.AssemblyReference.cache +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.GeneratedMSBuildEditorConfig.editorconfig +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.AssemblyInfoInputs.cache +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.AssemblyInfo.cs +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.csproj.CoreCompileInputs.cache +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.csproj.CopyComplete +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.dll +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\refint\Tic-Tac-Toe.dll +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.pdb +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\Tic-Tac-Toe.genruntimeconfig.cache +C:\dev\TicTacToe\Tic-Tac-Toe\obj\Release\net6.0\ref\Tic-Tac-Toe.dll diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.dll b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.dll new file mode 100644 index 0000000..9776086 Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.genruntimeconfig.cache b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.genruntimeconfig.cache new file mode 100644 index 0000000..d634b8d --- /dev/null +++ b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.genruntimeconfig.cache @@ -0,0 +1 @@ +63cd2f64283bd50c08a48ed09a9111e25db51877 diff --git a/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.pdb b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.pdb new file mode 100644 index 0000000..ce29918 Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/Tic-Tac-Toe.pdb differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/apphost.exe b/Tic-Tac-Toe/obj/Release/net6.0/apphost.exe new file mode 100644 index 0000000..a5742c1 Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/apphost.exe differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/ref/Tic-Tac-Toe.dll b/Tic-Tac-Toe/obj/Release/net6.0/ref/Tic-Tac-Toe.dll new file mode 100644 index 0000000..ec0bd09 Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/ref/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/obj/Release/net6.0/refint/Tic-Tac-Toe.dll b/Tic-Tac-Toe/obj/Release/net6.0/refint/Tic-Tac-Toe.dll new file mode 100644 index 0000000..ec0bd09 Binary files /dev/null and b/Tic-Tac-Toe/obj/Release/net6.0/refint/Tic-Tac-Toe.dll differ diff --git a/Tic-Tac-Toe/tic-tac-toe.ico b/Tic-Tac-Toe/tic-tac-toe.ico new file mode 100644 index 0000000..fb91bf5 Binary files /dev/null and b/Tic-Tac-Toe/tic-tac-toe.ico differ diff --git a/Tic-Tac-Toe/tic-tac-toe.png b/Tic-Tac-Toe/tic-tac-toe.png new file mode 100644 index 0000000..582c25d Binary files /dev/null and b/Tic-Tac-Toe/tic-tac-toe.png differ