示例#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());
}