mirror of
https://forge.univ-lyon1.fr/tplifap4/gyromite_ya.git
synced 2024-02-27 13:31:49 +01:00
15 lines
402 B
Java
15 lines
402 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package modele.calculs;
|
|
|
|
/** Type énuméré des directions : les directions correspondent à un ensemble borné de valeurs, connu à l'avance
|
|
*
|
|
*
|
|
*/
|
|
public enum Direction {
|
|
haut, bas, gauche, droite, action
|
|
}
|