play_mode.dart 219 B

1234567891011
  1. class PlayMode{
  2. final String mode;
  3. static const modeRobot = PlayMode('robot');
  4. static const modeOnline = PlayMode('online');
  5. static const modeFree = PlayMode('free');
  6. const PlayMode(this.mode);
  7. }