add description

This commit is contained in:
Sandipsinh Rathod 2024-11-19 20:49:12 -05:00
parent 4c59f9dd78
commit 45085e7434
2 changed files with 17 additions and 6 deletions

@ -55,12 +55,6 @@ Gameplay::~Gameplay() {
// Free the player objects
free(this->player1);
free(this->player2);
// Alternatively
/*
delete this->player1;
delete this->player2;
*/
}
template<typename T>

@ -1,3 +1,20 @@
//------------------------------------------------------------------------------------------------------------
// Team member 1:
// Name: Sandipsinh Rathod
// Email: sdr5549@psu.edu
// Class: CMPSC 330
//
// Team member 2:
// Name: Sapan Shah
// Email: scs6041@psu.edu
// Class: CMPSC 330
//
// Description: This program generates moves from two-player board game where
// wither one player plays strategically and the other plays randomly. Or both players
// play randomly or strategically.
//--------------------------------------------------------------------------------------------------------------
#include "gameplay.h"
#include <iostream>
#include <fstream>