Finite boards (#1)

This commit is contained in:
gavin
2018-07-15 02:54:26 +00:00
committed by Gitea
parent 68f83bfc4b
commit 0545c0a5d9
14 changed files with 497 additions and 356 deletions

19
src/consts.js Normal file
View File

@@ -0,0 +1,19 @@
export const HEX = 'hex';
export const CIRCLE = 'circle';
export const SQUARE = 'square';
export const TILE_STYLES = {HEX, CIRCLE, SQUARE};
export const BOARD_STYLES = {
HEX,
SQUARE,
};
export const FLAT = 'flat';
export const POINTY = 'pointy';
export const TILE_ORIENTATIONS = {
FLAT,
POINTY,
};