Card Game

Card Game Screenshot

Project Overview

This Card Game project is a simple game implemented in C++. The game allows users to play a basic card game against the computer. The project demonstrates the use of C++ for game development and object-oriented programming concepts.

Welcome Screen

The game starts with a welcome screen where users can choose to start a new game. The interface is designed to be simple and user-friendly.

Welcome Screen

Gameplay

During the game, users draw cards and play against the computer. The game keeps track of the user's score and the computer's score. The rules of the game are simple and easy to understand.

Gameplay Screen

Key Features

Game Over Screen

When the game ends, a Game Over screen is displayed with the final scores and an option to restart the game.

Game Over Screen

Technical Details

Game.cpp

This file contains the core logic of the game:

Main.cpp

This file sets up the game and integrates the Game class for user interaction. It handles the game's overall flow and logic.

How to Play

  1. Open the game and click "Start Game" on the welcome screen.
  2. Draw cards by following the on-screen instructions.
  3. The game will keep track of the scores. You can restart the game at any time.
Back to Projects