games: Bring in gomoku(6) from NetBSD
authorAaron LI <aly@aaronly.me>
Sat, 20 Feb 2021 10:37:34 +0000 (18:37 +0800)
committerAaron LI <aly@aaronly.me>
Sun, 21 Feb 2021 04:28:35 +0000 (12:28 +0800)
commit00b5bfed606f09b3980f2138f99c802b608cb5a5
tree92fdad65edc3bb502c19a80f68eb2f215cda7eff
parentd99c2c2f9395ecc65f9b38063211923263960299
games: Bring in gomoku(6) from NetBSD

gomoku is a two player game where the object is to get 5 in a row
horizontally, vertically or diagonally on a 19 by 19 grid.
games/Makefile
games/gomoku/Makefile [new file with mode: 0644]
games/gomoku/bdinit.c [new file with mode: 0644]
games/gomoku/bdisp.c [new file with mode: 0644]
games/gomoku/gomoku.6 [new file with mode: 0644]
games/gomoku/gomoku.h [new file with mode: 0644]
games/gomoku/main.c [new file with mode: 0644]
games/gomoku/makemove.c [new file with mode: 0644]
games/gomoku/pickmove.c [new file with mode: 0644]
games/gomoku/stoc.c [new file with mode: 0644]