Files
BUT3-IA-Jeux-PUBLIC/2024-25/javaAPI/fr/iut_fbleau/GameAPI/Result.java

12 lines
201 B
Java
Raw Normal View History

2025-09-18 15:15:37 +02:00
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;
}