aboutsummaryrefslogtreecommitdiff
path: root/draughts/public/javascripts/color.js
blob: 0449161f015e4b30736ae6231e9ab1465e65e4db (plain) (blame)
1
2
3
4
5
/* A basic enumeration for the two different player colors */
(function (exports) {
	exports.BLUE = "b"
	exports.RED  = "r"
})(typeof(exports) == "undefined" ? (this.Color == {}) : exports)