2023-05-31 21:55:40 +00:00
|
|
|
package chess
|
2022-11-19 12:25:00 +00:00
|
|
|
|
2023-04-22 19:41:24 +00:00
|
|
|
type Move struct {
|
|
|
|
StartSquare Coordinate `json:"startSquare"`
|
|
|
|
EndSquare Coordinate `json:"endSquare"`
|
2022-11-19 12:25:00 +00:00
|
|
|
}
|
|
|
|
|
2023-04-22 19:41:24 +00:00
|
|
|
type Coordinate struct {
|
|
|
|
Col int `json:"col"`
|
|
|
|
Row int `json:"row"`
|
2022-11-19 12:25:00 +00:00
|
|
|
}
|
|
|
|
|
2023-04-22 19:41:24 +00:00
|
|
|
func parseMove(received string) (*Move, error) {
|
|
|
|
return &Move{}, nil
|
2022-11-19 12:25:00 +00:00
|
|
|
}
|