mirror of
https://github.com/maaslalani/gambit.git
synced 2024-11-30 08:46:39 +02:00
8 lines
87 B
Go
8 lines
87 B
Go
package main
|
|
|
|
type Player struct {
|
|
Points int
|
|
Pieces []Piece
|
|
Captured []Piece
|
|
}
|