Add Two board map

This commit is contained in:
Aya Morisawa 2018-03-09 01:00:21 +09:00 committed by GitHub
parent d77416cedf
commit 2f593dfa67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -356,3 +356,27 @@ export const bigBoard: Map = {
'----------------' +
'----------------'
};
export const twoBoard: Map = {
name: 'Two board',
category: 'special',
size: 17,
data:
'-------- --------' +
'-------- --------' +
'-------- --------' +
'---wb--- ---wb---' +
'---bw--- ---bw---' +
'-------- --------' +
'-------- --------' +
'-------- --------' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
' ' +
' '
};