diff --git a/gameplay.cpp b/gameplay.cpp index 5f2c69b..9c7e881 100644 --- a/gameplay.cpp +++ b/gameplay.cpp @@ -55,12 +55,6 @@ Gameplay::~Gameplay() { // Free the player objects free(this->player1); free(this->player2); - - // Alternatively - /* - delete this->player1; - delete this->player2; - */ } template diff --git a/main.cpp b/main.cpp index a8e65e2..5d0e9e1 100644 --- a/main.cpp +++ b/main.cpp @@ -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 #include