Tests modele et vue mélangé

This commit is contained in:
Justine Yannis
2022-10-13 11:01:22 +02:00
parent 8cfc88de43
commit a6148c3ff9
5 changed files with 155 additions and 0 deletions

11
premierTests/Utils.java Normal file
View File

@@ -0,0 +1,11 @@
import java.awt.Color;
public class Utils {
public final static Color PLAYER_ONE_COLOR = Color.RED;
public final static Color PLAYER_TWO_COLOR = Color.YELLOW;
public final static int PLAYER_ONE = 0;
public final static int PLAYER_TWO = 1;
public static int PAWN_MARGIN = 10;
public static int COLUMN_COUNT = 7;
public static int ROW_COUNT = 6;
}