CircleShape.dart 102 B

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