1
0
mirror of https://github.com/maaslalani/gambit.git synced 2024-11-30 08:46:39 +02:00
gambit/player.go
2021-11-26 22:22:44 -05:00

8 lines
87 B
Go

package main
type Player struct {
Points int
Pieces []Piece
Captured []Piece
}