Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Resources/images/cardsBoard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/SnapGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ private static void HandleUserInput(Snap myGame)
/// <param name="myGame">The details of the game -- mostly top card and scores.</param>
private static void DrawGame(Snap myGame)
{
SwinGame.ClearScreen(Color.White);

//SwinGame.ClearScreen(Color.White);
SwinGame.DrawBitmap("cardsBoard.png", 0, 0);
// Draw the top card
Card top = myGame.TopCard;
if (top != null)
Expand Down