summaryrefslogtreecommitdiff
path: root/src/constants.js
blob: 5364410cd3152be0f2302a5d05f58704ae8e7a79 (plain)
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"