<?xml version="1.0" encoding="UTF-8"?>

<!--
gameClass.type : either "integers" or "fractions"
gameClass.total : the number of cards user must select
gameClass.numMin : the minimum value of the numerator
gameClass.numMax : the maximum value of the numerator
gameClass.denomMin : the minimum value of the denominator
gameClass.denomMax : the maximum value of the denominator
gameClass.solution : either "true", for give-solution mode, else "false" 

CAN'T HANDLER NEGATIVE INTEGERS AT THE MOMENT.
-->

<!--
This configuration file is the actual Countdown one.
-->

 <countdown>
 
   <gameClass type="integers"
   			  total="6"
   			  numMin="100"
   			  numMax="999"
   			  denomMin="1"
   			  denomMax="100"
   			  solution="true"
   			  comboBox="false">
   		<operations>
   			<operation type="+"/>
   			<operation type="-"/>
   			<operation type="*"/>
   			<operation type="/"/>
   		</operations>
   		<topRow>
   			<card num="25" denom="1"/>
   			<card num="50" denom="1"/>
   			<card num="75" denom="1"/>
   			<card num="100" denom="1"/>
   		</topRow>
   		<bottomRow>
   			<card num="1" denom="1"/>
   			<card num="1" denom="1"/>
   			<card num="2" denom="1"/>
   			<card num="2" denom="1"/>
   			<card num="3" denom="1"/>
   			<card num="3" denom="1"/>
   			<card num="4" denom="1"/>
   			<card num="4" denom="1"/>
   			<card num="5" denom="1"/>
   			<card num="5" denom="1"/>
   			<card num="6" denom="1"/>
   			<card num="6" denom="1"/>
   			<card num="7" denom="1"/>
   			<card num="7" denom="1"/>
   			<card num="8" denom="1"/>
   			<card num="8" denom="1"/>
   			<card num="9" denom="1"/>
   			<card num="9" denom="1"/>
   			<card num="10" denom="1"/>
   			<card num="10" denom="1"/>
   		</bottomRow>
   </gameClass>
 
 </countdown>