importation de l'API #2

This commit is contained in:
2025-10-16 10:19:29 +02:00
commit 8f38a511a3
7 changed files with 356 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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;
}