1
Fork 0
solar-conflux/fsharp/ygosim/src/Board.fs

9 lines
146 B
Forth
Raw Normal View History

module Board
open Player
type Board =
{ players: Player * Player }
let emptyBoard = { players = (initialPlayer 8000, initialPlayer 8000) }