
com.kelseyde.calvin.board.Colour Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of calvin-move-generator Show documentation
Show all versions of calvin-move-generator Show documentation
A magic bitboard based chess move generator.
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