package figureComponent
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class Bishop(x: Int, y: Int, color: Color) extends Figure with Product with Serializable
- trait Figure extends AnyRef
- case class King(x: Int, y: Int, color: Color) extends Figure with Product with Serializable
- case class Knight(x: Int, y: Int, color: Color) extends Figure with Product with Serializable
- case class Pawn(x: Int, y: Int, color: Color, moved: Option[Boolean] = None) extends Figure with Product with Serializable
- case class Player(name: String) extends Product with Serializable
- case class Queen(x: Int, y: Int, color: Color) extends Figure with Product with Serializable
- case class Rook(x: Int, y: Int, color: Color) extends Figure with Product with Serializable