예제 #1
0
파일: Dice.cpp 프로젝트: KiGhost/Risk_AI
bool operator==(const Dice& lhs, const Dice& rhs)
{ 
	return (lhs.getDiceValue() == rhs.getDiceValue());
}
예제 #2
0
파일: Dice.cpp 프로젝트: KiGhost/Risk_AI
bool operator>(const Dice& lhs, const Dice& rhs)
{ 
	return (lhs.getDiceValue() > rhs.getDiceValue());
}