RectShape.dart 98 B

1234567
  1. import 'ChessShape.dart';
  2. class RectShape extends ChessShape{
  3. RectShape(){
  4. shape = 2;
  5. }
  6. }