abstract class ChessShape{
  int? _shape;

  int get shape => _shape!;

  set shape(int value) {
    _shape = value;
  }
}