diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-09 02:56:44 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-09 02:56:44 +0900 |
| commit | bd07246af6b8a48cd4a2008ccc15129f3692b1d0 (patch) | |
| tree | b694e29a2691f767e26377a6b209c70ccead60fd /src | |
| parent | v4038 (diff) | |
| parent | Add reserved map (diff) | |
| download | sharkey-bd07246af6b8a48cd4a2008ccc15129f3692b1d0.tar.gz sharkey-bd07246af6b8a48cd4a2008ccc15129f3692b1d0.tar.bz2 sharkey-bd07246af6b8a48cd4a2008ccc15129f3692b1d0.zip | |
Merge pull request #1207 from syuilo/othello-reserved-map
Add Reserved map
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/othello/maps.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/common/othello/maps.ts b/src/common/othello/maps.ts index 9d91219ff0..0672fc86b0 100644 --- a/src/common/othello/maps.ts +++ b/src/common/othello/maps.ts @@ -200,6 +200,21 @@ export const window: Map = { '--------' }; +export const reserved: Map = { + name: 'Reserved', + category: '8x8', + size: 8, + data: + 'w------b' + + '--------' + + '--------' + + '---wb---' + + '---bw---' + + '--------' + + '--------' + + 'b------w' +}; + export const tenthtenth: Map = { name: '10x10', category: '10x10', |