updateState.dart 228 B

1234567891011
  1. import 'package:flutter_2048/store/game_state.dart';
  2. class UpdateStateAction {
  3. GameState state;
  4. UpdateStateAction(this.state);
  5. }
  6. GameState updateState(GameState state, UpdateStateAction action) {
  7. return action.state;
  8. }