package fr.umlv.ig.misc;

public interface Dice {

    /**
     * @return an integer in [1;6]
     */
    public int getValue();

    
    /**
     * @return an array containing a description of the dice followed by a description of 
     * the constructor's parameters.
     * 
     * NOTE: a class implementing the Dice interface is not supposed to declare 
     *       more than one constructor
     */
    public String[] getDescription();
}
