Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 726 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 726 Bytes

Forty Thieves Solitaire

Assignment 3 for SFWRENG 2AA4 - Software Design I - Introduction to Software Development

Overview

A C++ program of the game, Forty Thieves Solitaire. The rules of the game are as describe on the online game of Forty Thieves.

How To Run

There is no interface made for this program, so you must make fill out the main file with all the moves you wish to do. There is a small test for functionality:

make experiment

Unit testing (catch2) can be run with:

make test

Documentation can be generated by doxygen:

make doc

What I Learned

  • First Time Using C++
  • More Advanced Object-Oriented Programming
    • Abstract Data Types vs Objects