From 4811afb52c511565d2b13f36ed645243c7557803 Mon Sep 17 00:00:00 2001 From: Aldrik Ramaekers Date: Wed, 2 Sep 2020 11:08:17 +0200 Subject: board generation --- .vs/Chess/v16/.suo | Bin 0 -> 71168 bytes App.config | 6 + BoardTile.cs | 38 +++++ Chess.csproj | 124 ++++++++++++++ Chess.sln | 25 +++ ChessBoard.cs | 96 +++++++++++ ChessPiece.cs | 50 ++++++ MainForm.Designer.cs | 64 +++++++ MainForm.cs | 40 +++++ MainForm.resx | 120 ++++++++++++++ Pieces/Pawn.cs | 34 ++++ Program.cs | 22 +++ Properties/AssemblyInfo.cs | 36 ++++ Properties/Resources.Designer.cs | 183 +++++++++++++++++++++ Properties/Resources.resx | 157 ++++++++++++++++++ Properties/Settings.Designer.cs | 30 ++++ Properties/Settings.settings | 7 + Resources/b_bishop_png_shadow_256px.png | Bin 0 -> 14988 bytes Resources/b_king_png_shadow_256px.png | Bin 0 -> 16129 bytes Resources/b_knight_png_shadow_256px.png | Bin 0 -> 14644 bytes Resources/b_pawn_png_shadow_256px.png | Bin 0 -> 11103 bytes Resources/b_queen_png_shadow_256px.png | Bin 0 -> 22197 bytes Resources/b_rook_png_shadow_256px.png | Bin 0 -> 7333 bytes Resources/w_bishop_png_shadow_256px.png | Bin 0 -> 12556 bytes Resources/w_king_png_shadow_256px.png | Bin 0 -> 13604 bytes Resources/w_knight_png_shadow_256px.png | Bin 0 -> 12268 bytes Resources/w_pawn_png_shadow_256px.png | Bin 0 -> 9327 bytes Resources/w_queen_png_shadow_256px.png | Bin 0 -> 17961 bytes Resources/w_rook_png_shadow_256px.png | Bin 0 -> 6969 bytes bin/Debug/Chess.exe | Bin 0 -> 227328 bytes bin/Debug/Chess.exe.config | 6 + bin/Debug/Chess.pdb | Bin 0 -> 56832 bytes bin/Release/Chess.exe | Bin 0 -> 10752 bytes bin/Release/Chess.exe.config | 6 + bin/Release/Chess.pdb | Bin 0 -> 50688 bytes ...TFramework,Version=v4.7.2.AssemblyAttributes.cs | 4 + obj/Debug/Chess.MainForm.resources | Bin 0 -> 180 bytes obj/Debug/Chess.Properties.Resources.resources | Bin 0 -> 214315 bytes obj/Debug/Chess.csproj.CoreCompileInputs.cache | 1 + ...ess.csproj.FileListAbsolute-LAPTOP-B78JCJFS.txt | 9 + obj/Debug/Chess.csproj.FileListAbsolute.txt | 10 ++ obj/Debug/Chess.csproj.GenerateResource.cache | Bin 0 -> 1709 bytes obj/Debug/Chess.csprojAssemblyReference.cache | Bin 0 -> 424 bytes obj/Debug/Chess.exe | Bin 0 -> 227328 bytes obj/Debug/Chess.pdb | Bin 0 -> 56832 bytes .../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 823 bytes .../DesignTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 9376 bytes .../TempPE/Properties.Resources.Designer.cs.dll | Bin 0 -> 5632 bytes ...TFramework,Version=v4.7.2.AssemblyAttributes.cs | 4 + obj/Release/Chess.MainForm.resources | Bin 0 -> 180 bytes obj/Release/Chess.Properties.Resources.resources | Bin 0 -> 180 bytes obj/Release/Chess.csproj.CoreCompileInputs.cache | 1 + obj/Release/Chess.csproj.FileListAbsolute.txt | 10 ++ obj/Release/Chess.csproj.GenerateResource.cache | Bin 0 -> 1015 bytes obj/Release/Chess.csprojAssemblyReference.cache | Bin 0 -> 424 bytes obj/Release/Chess.exe | Bin 0 -> 10752 bytes obj/Release/Chess.pdb | Bin 0 -> 50688 bytes .../TempPE/Properties.Resources.Designer.cs.dll | Bin 0 -> 3584 bytes 58 files changed, 1083 insertions(+) create mode 100644 .vs/Chess/v16/.suo create mode 100644 App.config create mode 100644 BoardTile.cs create mode 100644 Chess.csproj create mode 100644 Chess.sln create mode 100644 ChessBoard.cs create mode 100644 ChessPiece.cs create mode 100644 MainForm.Designer.cs create mode 100644 MainForm.cs create mode 100644 MainForm.resx create mode 100644 Pieces/Pawn.cs create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 Resources/b_bishop_png_shadow_256px.png create mode 100644 Resources/b_king_png_shadow_256px.png create mode 100644 Resources/b_knight_png_shadow_256px.png create mode 100644 Resources/b_pawn_png_shadow_256px.png create mode 100644 Resources/b_queen_png_shadow_256px.png create mode 100644 Resources/b_rook_png_shadow_256px.png create mode 100644 Resources/w_bishop_png_shadow_256px.png create mode 100644 Resources/w_king_png_shadow_256px.png create mode 100644 Resources/w_knight_png_shadow_256px.png create mode 100644 Resources/w_pawn_png_shadow_256px.png create mode 100644 Resources/w_queen_png_shadow_256px.png create mode 100644 Resources/w_rook_png_shadow_256px.png create mode 100644 bin/Debug/Chess.exe create mode 100644 bin/Debug/Chess.exe.config create mode 100644 bin/Debug/Chess.pdb create mode 100644 bin/Release/Chess.exe create mode 100644 bin/Release/Chess.exe.config create mode 100644 bin/Release/Chess.pdb create mode 100644 obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 obj/Debug/Chess.MainForm.resources create mode 100644 obj/Debug/Chess.Properties.Resources.resources create mode 100644 obj/Debug/Chess.csproj.CoreCompileInputs.cache create mode 100644 obj/Debug/Chess.csproj.FileListAbsolute-LAPTOP-B78JCJFS.txt create mode 100644 obj/Debug/Chess.csproj.FileListAbsolute.txt create mode 100644 obj/Debug/Chess.csproj.GenerateResource.cache create mode 100644 obj/Debug/Chess.csprojAssemblyReference.cache create mode 100644 obj/Debug/Chess.exe create mode 100644 obj/Debug/Chess.pdb create mode 100644 obj/Debug/DesignTimeResolveAssemblyReferences.cache create mode 100644 obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 obj/Debug/TempPE/Properties.Resources.Designer.cs.dll create mode 100644 obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 obj/Release/Chess.MainForm.resources create mode 100644 obj/Release/Chess.Properties.Resources.resources create mode 100644 obj/Release/Chess.csproj.CoreCompileInputs.cache create mode 100644 obj/Release/Chess.csproj.FileListAbsolute.txt create mode 100644 obj/Release/Chess.csproj.GenerateResource.cache create mode 100644 obj/Release/Chess.csprojAssemblyReference.cache create mode 100644 obj/Release/Chess.exe create mode 100644 obj/Release/Chess.pdb create mode 100644 obj/Release/TempPE/Properties.Resources.Designer.cs.dll diff --git a/.vs/Chess/v16/.suo b/.vs/Chess/v16/.suo new file mode 100644 index 0000000..63c9c46 Binary files /dev/null and b/.vs/Chess/v16/.suo differ diff --git a/App.config b/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BoardTile.cs b/BoardTile.cs new file mode 100644 index 0000000..1bccbec --- /dev/null +++ b/BoardTile.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Chess +{ + public enum BoardTileColor + { + White, + Black, + } + + public class BoardTile + { + public int X; + public int Y; + public BoardTileColor Color; + public ChessPiece OccupyingPiece; + https://git.fhict.nl/I436104/chess + public BoardTile(int x, int y, BoardTileColor color) + { + X = x; + Y = y; + Color = color; + OccupyingPiece = null; + } + + internal void Draw(Graphics graphics, float tileWidth, float tileHeight) + { + graphics.FillRectangle(new SolidBrush(this.Color == BoardTileColor.White ? System.Drawing.Color.White : System.Drawing.Color.Black), new RectangleF(X * tileWidth, Y * tileHeight, tileWidth, tileHeight)); + + OccupyingPiece?.Draw(graphics, X, Y, tileWidth, tileHeight); + } + } +} diff --git a/Chess.csproj b/Chess.csproj new file mode 100644 index 0000000..1dc8e7e --- /dev/null +++ b/Chess.csproj @@ -0,0 +1,124 @@ + + + + + Debug + AnyCPU + {CBF01088-874A-442B-867D-2456BED50DC0} + WinExe + Chess + Chess + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + Form + + + MainForm.cs + + + + + + MainForm.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Chess.sln b/Chess.sln new file mode 100644 index 0000000..9f798b8 --- /dev/null +++ b/Chess.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30406.217 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chess", "Chess.csproj", "{CBF01088-874A-442B-867D-2456BED50DC0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CBF01088-874A-442B-867D-2456BED50DC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CBF01088-874A-442B-867D-2456BED50DC0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CBF01088-874A-442B-867D-2456BED50DC0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CBF01088-874A-442B-867D-2456BED50DC0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {879B9B2D-8E15-4746-92A9-45F6CDD2463A} + EndGlobalSection +EndGlobal diff --git a/ChessBoard.cs b/ChessBoard.cs new file mode 100644 index 0000000..81939bc --- /dev/null +++ b/ChessBoard.cs @@ -0,0 +1,96 @@ +using Chess.Pieces; +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Chess +{ + public class ChessBoard + { + const int boardSize = 8; + + private float tileWidth; + private float tileHeight; + + private BoardTile[,] tiles; + private PictureBox container; + + public ChessBoard(PictureBox container) + { + this.container = container; + + GenerateBoard(); + GeneratePieces(); + + DrawGame(); + } + + public void HandleResize() + { + DrawGame(); + } + + public void GeneratePieces() + { + for (int x = 0; x < boardSize; x++) + tiles[1, x].OccupyingPiece = new Pawn(); + + for (int x = 0; x < boardSize; x++) + tiles[6, x].OccupyingPiece = new Pawn(); + } + + public void GenerateBoard() + { + tiles = new BoardTile[boardSize, boardSize]; + + for (int y = 0; y < boardSize; y++) + { + for (int x = 0; x < boardSize; x++) + { + BoardTileColor color = BoardTileColor.White; + + if (y % 2 == 0) + { + if (x % 2 != 0) color = BoardTileColor.Black; + } + else + { + if (x % 2 == 0) color = BoardTileColor.Black; + } + + tiles[y, x] = new BoardTile(x, y, color); + } + } + } + + public void DrawGame() + { + Bitmap temp = new Bitmap(container.Size.Width, container.Size.Height); + + tileWidth = container.Size.Width / (float)boardSize; + tileHeight = container.Size.Height / (float)boardSize; + + using (Graphics g = Graphics.FromImage(temp)) + { + for (int y = 0; y < boardSize; y++) + { + for (int x = 0; x < boardSize; x++) + { + BoardTile tile = tiles[y, x]; + + tile.Draw(g, tileWidth, tileHeight); + } + } + } + + if (container.Image != null) + container.Image.Dispose(); + + container.Image = temp; + } + } +} diff --git a/ChessPiece.cs b/ChessPiece.cs new file mode 100644 index 0000000..68bc1cf --- /dev/null +++ b/ChessPiece.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Drawing.Imaging; + +namespace Chess +{ + public abstract class ChessPiece + { + internal Bitmap PieceImage; + internal bool IsWhite; + + public ChessPiece(bool isWhite) + { + IsWhite = isWhite; + } + + public abstract bool MoveTo(); + public abstract void Draw(Graphics graphics, float x, float y, float tileWidth, float tileHeight); + + public Bitmap ResizeImage(Image image, int width, int height) + { + var destRect = new Rectangle(0, 0, width, height); + var destImage = new Bitmap(width, height); + + destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution); + + using (var graphics = Graphics.FromImage(destImage)) + { + graphics.CompositingMode = CompositingMode.SourceCopy; + graphics.CompositingQuality = CompositingQuality.HighQuality; + graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; + graphics.SmoothingMode = SmoothingMode.HighQuality; + graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; + + using (var wrapMode = new ImageAttributes()) + { + wrapMode.SetWrapMode(WrapMode.TileFlipXY); + graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode); + } + } + + return destImage; + } + } +} diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs new file mode 100644 index 0000000..ec582bc --- /dev/null +++ b/MainForm.Designer.cs @@ -0,0 +1,64 @@ +namespace Chess +{ + partial class MainForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.chessBoardBitmap = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.chessBoardBitmap)).BeginInit(); + this.SuspendLayout(); + // + // chessBoardBitmap + // + this.chessBoardBitmap.Location = new System.Drawing.Point(254, 61); + this.chessBoardBitmap.Name = "chessBoardBitmap"; + this.chessBoardBitmap.Size = new System.Drawing.Size(173, 146); + this.chessBoardBitmap.TabIndex = 0; + this.chessBoardBitmap.TabStop = false; + // + // MainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(784, 761); + this.Controls.Add(this.chessBoardBitmap); + this.MinimumSize = new System.Drawing.Size(200, 200); + this.Name = "MainForm"; + this.Text = "Chess Xtreme"; + this.Load += new System.EventHandler(this.MainForm_Load); + this.Resize += new System.EventHandler(this.MainForm_Resize); + ((System.ComponentModel.ISupportInitialize)(this.chessBoardBitmap)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox chessBoardBitmap; + } +} + diff --git a/MainForm.cs b/MainForm.cs new file mode 100644 index 0000000..08e2803 --- /dev/null +++ b/MainForm.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Chess +{ + public partial class MainForm : Form + { + private ChessBoard board; + + public MainForm() + { + InitializeComponent(); + } + + private void FitBoardContainerToScreen() + { + this.chessBoardBitmap.Location = new Point(0, 0); + this.chessBoardBitmap.Size = new Size(this.ClientSize.Width, this.ClientSize.Height); + } + + private void MainForm_Load(object sender, EventArgs e) + { + FitBoardContainerToScreen(); + this.board = new ChessBoard(this.chessBoardBitmap); + } + + private void MainForm_Resize(object sender, EventArgs e) + { + FitBoardContainerToScreen(); + this.board.HandleResize(); + } + } +} diff --git a/MainForm.resx b/MainForm.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/MainForm.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Pieces/Pawn.cs b/Pieces/Pawn.cs new file mode 100644 index 0000000..d518b8e --- /dev/null +++ b/Pieces/Pawn.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Chess.Pieces +{ + class Pawn : ChessPiece + { + public Pawn() + { + PieceImage = new Bitmap(Chess.Properties.Resources.b_pawn_png_shadow_256px); + } + + public override void Draw(Graphics graphics, float x, float y, float tileWidth, float tileHeight) + { + if (PieceImage != null) + { + var image = this.ResizeImage(PieceImage, (int)tileWidth, (int)tileHeight); + + graphics.DrawImage(image, new PointF(x*tileWidth, y*tileHeight)); + + image.Dispose(); + } + } + + public override bool MoveTo() + { + throw new NotImplementedException(); + } + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..06b734c --- /dev/null +++ b/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Chess +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..642e315 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Chess")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Chess")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("cbf01088-874a-442b-867d-2456bed50dc0")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs new file mode 100644 index 0000000..65342f3 --- /dev/null +++ b/Properties/Resources.Designer.cs @@ -0,0 +1,183 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace Chess.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Chess.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap b_bishop_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("b_bishop_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap b_king_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("b_king_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap b_knight_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("b_knight_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap b_pawn_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("b_pawn_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap b_queen_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("b_queen_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap b_rook_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("b_rook_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap w_bishop_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("w_bishop_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap w_king_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("w_king_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap w_knight_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("w_knight_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap w_pawn_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("w_pawn_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap w_queen_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("w_queen_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap w_rook_png_shadow_256px { + get { + object obj = ResourceManager.GetObject("w_rook_png_shadow_256px", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/Properties/Resources.resx b/Properties/Resources.resx new file mode 100644 index 0000000..6281906 --- /dev/null +++ b/Properties/Resources.resx @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\b_bishop_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\b_king_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\b_knight_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\b_pawn_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\b_queen_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\b_rook_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\w_bishop_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\w_king_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\w_knight_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\w_pawn_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\w_queen_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\w_rook_png_shadow_256px.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs new file mode 100644 index 0000000..2655a4f --- /dev/null +++ b/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace Chess.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Properties/Settings.settings b/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Resources/b_bishop_png_shadow_256px.png b/Resources/b_bishop_png_shadow_256px.png new file mode 100644 index 0000000..4e06f75 Binary files /dev/null and b/Resources/b_bishop_png_shadow_256px.png differ diff --git a/Resources/b_king_png_shadow_256px.png b/Resources/b_king_png_shadow_256px.png new file mode 100644 index 0000000..7e3a2d0 Binary files /dev/null and b/Resources/b_king_png_shadow_256px.png differ diff --git a/Resources/b_knight_png_shadow_256px.png b/Resources/b_knight_png_shadow_256px.png new file mode 100644 index 0000000..1a79790 Binary files /dev/null and b/Resources/b_knight_png_shadow_256px.png differ diff --git a/Resources/b_pawn_png_shadow_256px.png b/Resources/b_pawn_png_shadow_256px.png new file mode 100644 index 0000000..4093567 Binary files /dev/null and b/Resources/b_pawn_png_shadow_256px.png differ diff --git a/Resources/b_queen_png_shadow_256px.png b/Resources/b_queen_png_shadow_256px.png new file mode 100644 index 0000000..be144e6 Binary files /dev/null and b/Resources/b_queen_png_shadow_256px.png differ diff --git a/Resources/b_rook_png_shadow_256px.png b/Resources/b_rook_png_shadow_256px.png new file mode 100644 index 0000000..007f742 Binary files /dev/null and b/Resources/b_rook_png_shadow_256px.png differ diff --git a/Resources/w_bishop_png_shadow_256px.png b/Resources/w_bishop_png_shadow_256px.png new file mode 100644 index 0000000..b5cd1c3 Binary files /dev/null and b/Resources/w_bishop_png_shadow_256px.png differ diff --git a/Resources/w_king_png_shadow_256px.png b/Resources/w_king_png_shadow_256px.png new file mode 100644 index 0000000..c2d66a0 Binary files /dev/null and b/Resources/w_king_png_shadow_256px.png differ diff --git a/Resources/w_knight_png_shadow_256px.png b/Resources/w_knight_png_shadow_256px.png new file mode 100644 index 0000000..7f56449 Binary files /dev/null and b/Resources/w_knight_png_shadow_256px.png differ diff --git a/Resources/w_pawn_png_shadow_256px.png b/Resources/w_pawn_png_shadow_256px.png new file mode 100644 index 0000000..0c5eaa3 Binary files /dev/null and b/Resources/w_pawn_png_shadow_256px.png differ diff --git a/Resources/w_queen_png_shadow_256px.png b/Resources/w_queen_png_shadow_256px.png new file mode 100644 index 0000000..31687ec Binary files /dev/null and b/Resources/w_queen_png_shadow_256px.png differ diff --git a/Resources/w_rook_png_shadow_256px.png b/Resources/w_rook_png_shadow_256px.png new file mode 100644 index 0000000..53213ac Binary files /dev/null and b/Resources/w_rook_png_shadow_256px.png differ diff --git a/bin/Debug/Chess.exe b/bin/Debug/Chess.exe new file mode 100644 index 0000000..d4cf93c Binary files /dev/null and b/bin/Debug/Chess.exe differ diff --git a/bin/Debug/Chess.exe.config b/bin/Debug/Chess.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/bin/Debug/Chess.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/bin/Debug/Chess.pdb b/bin/Debug/Chess.pdb new file mode 100644 index 0000000..5a0e80f Binary files /dev/null and b/bin/Debug/Chess.pdb differ diff --git a/bin/Release/Chess.exe b/bin/Release/Chess.exe new file mode 100644 index 0000000..bb54dc3 Binary files /dev/null and b/bin/Release/Chess.exe differ diff --git a/bin/Release/Chess.exe.config b/bin/Release/Chess.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/bin/Release/Chess.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/bin/Release/Chess.pdb b/bin/Release/Chess.pdb new file mode 100644 index 0000000..e3b4478 Binary files /dev/null and b/bin/Release/Chess.pdb differ diff --git a/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/obj/Debug/Chess.MainForm.resources b/obj/Debug/Chess.MainForm.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/Debug/Chess.MainForm.resources differ diff --git a/obj/Debug/Chess.Properties.Resources.resources b/obj/Debug/Chess.Properties.Resources.resources new file mode 100644 index 0000000..928dda4 Binary files /dev/null and b/obj/Debug/Chess.Properties.Resources.resources differ diff --git a/obj/Debug/Chess.csproj.CoreCompileInputs.cache b/obj/Debug/Chess.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0afc8e6 --- /dev/null +++ b/obj/Debug/Chess.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c665b544783ebbad06de451d9c9d8d9603c7e71b diff --git a/obj/Debug/Chess.csproj.FileListAbsolute-LAPTOP-B78JCJFS.txt b/obj/Debug/Chess.csproj.FileListAbsolute-LAPTOP-B78JCJFS.txt new file mode 100644 index 0000000..9cb6ff2 --- /dev/null +++ b/obj/Debug/Chess.csproj.FileListAbsolute-LAPTOP-B78JCJFS.txt @@ -0,0 +1,9 @@ +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Debug\Chess.exe.config +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Debug\Chess.exe +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Debug\Chess.pdb +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.MainForm.resources +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.Properties.Resources.resources +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.csproj.GenerateResource.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.csproj.CoreCompileInputs.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.exe +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.pdb diff --git a/obj/Debug/Chess.csproj.FileListAbsolute.txt b/obj/Debug/Chess.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9f178e4 --- /dev/null +++ b/obj/Debug/Chess.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Debug\Chess.exe.config +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Debug\Chess.exe +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Debug\Chess.pdb +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.MainForm.resources +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.Properties.Resources.resources +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.csproj.GenerateResource.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.csproj.CoreCompileInputs.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.exe +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.pdb +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Debug\Chess.csprojAssemblyReference.cache diff --git a/obj/Debug/Chess.csproj.GenerateResource.cache b/obj/Debug/Chess.csproj.GenerateResource.cache new file mode 100644 index 0000000..15b52cf Binary files /dev/null and b/obj/Debug/Chess.csproj.GenerateResource.cache differ diff --git a/obj/Debug/Chess.csprojAssemblyReference.cache b/obj/Debug/Chess.csprojAssemblyReference.cache new file mode 100644 index 0000000..f81aff4 Binary files /dev/null and b/obj/Debug/Chess.csprojAssemblyReference.cache differ diff --git a/obj/Debug/Chess.exe b/obj/Debug/Chess.exe new file mode 100644 index 0000000..d4cf93c Binary files /dev/null and b/obj/Debug/Chess.exe differ diff --git a/obj/Debug/Chess.pdb b/obj/Debug/Chess.pdb new file mode 100644 index 0000000..5a0e80f Binary files /dev/null and b/obj/Debug/Chess.pdb differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..e6fcb3b Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..29860f8 Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..87e591a Binary files /dev/null and b/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/obj/Release/Chess.MainForm.resources b/obj/Release/Chess.MainForm.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/Release/Chess.MainForm.resources differ diff --git a/obj/Release/Chess.Properties.Resources.resources b/obj/Release/Chess.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/obj/Release/Chess.Properties.Resources.resources differ diff --git a/obj/Release/Chess.csproj.CoreCompileInputs.cache b/obj/Release/Chess.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ebf2dd0 --- /dev/null +++ b/obj/Release/Chess.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c5c1da89ec11211f5ccde59de778c88b1d2136fd diff --git a/obj/Release/Chess.csproj.FileListAbsolute.txt b/obj/Release/Chess.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..25a0623 --- /dev/null +++ b/obj/Release/Chess.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Release\Chess.exe.config +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Release\Chess.exe +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\bin\Release\Chess.pdb +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.csprojAssemblyReference.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.MainForm.resources +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.Properties.Resources.resources +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.csproj.GenerateResource.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.csproj.CoreCompileInputs.cache +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.exe +C:\Users\Aldrik R\OneDrive - Office 365 Fontys\Homework\P-DB-SOFT-P-DB04\Deelproducten\Deelproduct wedstrijd\Chess\obj\Release\Chess.pdb diff --git a/obj/Release/Chess.csproj.GenerateResource.cache b/obj/Release/Chess.csproj.GenerateResource.cache new file mode 100644 index 0000000..e76fea7 Binary files /dev/null and b/obj/Release/Chess.csproj.GenerateResource.cache differ diff --git a/obj/Release/Chess.csprojAssemblyReference.cache b/obj/Release/Chess.csprojAssemblyReference.cache new file mode 100644 index 0000000..4c4ceaf Binary files /dev/null and b/obj/Release/Chess.csprojAssemblyReference.cache differ diff --git a/obj/Release/Chess.exe b/obj/Release/Chess.exe new file mode 100644 index 0000000..bb54dc3 Binary files /dev/null and b/obj/Release/Chess.exe differ diff --git a/obj/Release/Chess.pdb b/obj/Release/Chess.pdb new file mode 100644 index 0000000..e3b4478 Binary files /dev/null and b/obj/Release/Chess.pdb differ diff --git a/obj/Release/TempPE/Properties.Resources.Designer.cs.dll b/obj/Release/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..5e47250 Binary files /dev/null and b/obj/Release/TempPE/Properties.Resources.Designer.cs.dll differ -- cgit v1.2.3-70-g09d2