All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kelseyde.calvin.board.Colour Maven / Gradle / Ivy

The newest version!
package com.kelseyde.calvin.board;

public class Colour {

    public static final int WHITE = 0;
    public static final int BLACK = 1;

    public static int index(boolean white) {
        return white ? WHITE : BLACK;
    }

    public static String label(boolean white) {
        return white ? "white" : "black";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy