1 2 3 4 5 6 7 8 9 10
export const PLAYER = { BLACK: "black", WHITE: "white", OPPOSITE: function(color) { return color == PLAYER.BLACK ? PLAYER.WHITE : PLAYER.BLACK }, } export const ASSETS_BLACK = "assets/black.png" export const ASSETS_WHITE = "assets/white.png"