A C# Windows Forms application that lets the user play the classic game of Rock, Paper, Scissors against the computer. The program generates a random choice for the computer and compares it to the user's selection to determine the winner.
- Random Computer Choice: The computer randomly selects between Rock, Paper, or Scissors.
- User Interaction: Users can select Rock, Paper, or Scissors by clicking corresponding images.
- Game Logic:
- The game determines the winner based on the classic rules:
- Rock beats Scissors
- Scissors beats Paper
- Paper beats Rock
- The game displays the results (computer's choice, user's choice, and the winner).
- The game determines the winner based on the classic rules:
- User-Friendly Interface: Clickable images for Rock, Paper, and Scissors for easy interaction.
- C#: Core programming language.
- Windows Forms: Used to build the graphical user interface.
- .NET Framework: Platform used to develop and run the application.
- Open the solution file (
rockPaperScissors.sln) in Visual Studio. - Build and run the project.
This game was developed as part of a Chapter 10 assignment for my programming class. The folder name Drawdy_chapter_10 reflects the required naming convention for class submissions.