/* CS102 - Jim Plank */ /* A program that uses the MasterMind class to play a game between Tom and Jerry */ #include using namespace std; #include "mm.h" int main() { MasterMind game; game.play_game("Tom", "Jerry"); return 0; }