Files
BUT3-JEU/TP3/fr/iut_fbleau/GameAPI/Result.java
James Boutaric b9c926f493 ajout TP3
2025-10-09 10:20:53 +02:00

12 lines
201 B
Java

package fr.iut_fbleau.GameAPI;
/**
* To output the result of a 2 player game that is symmetric.
* from the perspective of the player PLAYER1.
*/
public enum Result {
WIN,
DRAW,
LOSS;
}