Add complete demonstration game, one move per file.

A normal game will have all moves applied to board.md

It would use commits rather than files to represent each move

This demonstration game allows an automated creation of an example game.
This commit is contained in:
D. Joe 2022-07-23 11:21:15 -04:00
parent 2bc245fd61
commit e4ccf24544
10 changed files with 80 additions and 0 deletions

8
demo/move/0.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3| | | |
|2| | | |
|1| | | |
+-+-+-+-+
```

8
demo/move/1.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X| | |
|2| | | |
|1| | | |
+-+-+-+-+
```

8
demo/move/2.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X| | |
|2| |O| |
|1| | | |
+-+-+-+-+
```

8
demo/move/3.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X| | |
|2| |O| |
|1| | |X|
+-+-+-+-+
```

8
demo/move/4.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X| | |
|2| |O| |
|1|O| |X|
+-+-+-+-+
```

8
demo/move/5.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X| |X|
|2| |O| |
|1|O| |X|
+-+-+-+-+
```

8
demo/move/6.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X|O|X|
|2| |O| |
|1|O| |X|
+-+-+-+-+
```

8
demo/move/7.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X|O|X|
|2| |O| |
|1|O|X|X|
+-+-+-+-+
```

8
demo/move/8.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X|O|X|
|2| |O|O|
|1|O|X|X|
+-+-+-+-+
```

8
demo/move/9.md Normal file
View File

@ -0,0 +1,8 @@
```
| |A|B|C|
+-+-+-+-+
|3|X|O|X|
|2|X|O|O|
|1|O|X|X|
+-+-+-+-+
```