#include #include #include "SizeT.h" #include "GameRules.h" using namespace std; string FindAction(int diff) { string action; switch(diff) { case 0: action = "make friends"; break; case 1: action = "look at each other in amazement"; break; default: action = "fail to notice each other"; break; } return action; } string HugeComment(SizeT size){ string response; switch(size) { case SizeT::TINY: case SizeT::SMALL: case SizeT::GARGANTUAN: response = "What, I don't see you!"; break; case SizeT::MEDIUM: response = "Look at that tiny little thing!"; break; case SizeT::LARGE: response = "Will you be my friend?"; break; case SizeT::HUGE: response = "Look at that big thing!"; break; default: response = "I don't know what size that thing is!"; } return response; }