20 lines
377 B
Go
20 lines
377 B
Go
|
package chess
|
||
|
|
||
|
import "local/m/mchess_server/types"
|
||
|
|
||
|
type Knight struct {
|
||
|
Color types.ChessColor
|
||
|
}
|
||
|
|
||
|
// AfterMoveAction implements Piece.
|
||
|
func (Knight) AfterMoveAction() {
|
||
|
}
|
||
|
|
||
|
func (k Knight) GetColor() types.ChessColor {
|
||
|
return k.Color
|
||
|
}
|
||
|
|
||
|
func (k Knight) GetAllLegalAndIllegalMoves(board Board, fromSquare types.Coordinate) []types.Coordinate {
|
||
|
return []types.Coordinate{}
|
||
|
}
|