Beispiel #1
0
bool operator==(const Dice& lhs, const Dice& rhs)
{ 
	return (lhs.getDiceValue() == rhs.getDiceValue());
}
Beispiel #2
0
bool operator>(const Dice& lhs, const Dice& rhs)
{ 
	return (lhs.getDiceValue() > rhs.getDiceValue());
}