mirror of
https://github.com/maaslalani/gambit.git
synced 2025-01-03 22:52:10 +02:00
8 lines
87 B
Go
8 lines
87 B
Go
package main
|
|
|
|
type Player struct {
|
|
Points int
|
|
Pieces []Piece
|
|
Captured []Piece
|
|
}
|