blob: ece37818597836fdb9e4058293e12b42150abec5 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import 'game.dart' show Game, GameType, GameLog, GameCommand;
class SyncbaseEcho extends Game {
SyncbaseEcho() : super.dummy(GameType.SyncbaseEcho, new SyncbaseEchoLog());
}
class SyncbaseEchoLog extends GameLog {
void addToLogCb(List<GameCommand> log, GameCommand newCommand) {
update(new List<GameCommand>.from(log)..add(newCommand));
}
List<GameCommand> updateLogCb(
List<GameCommand> current, List<GameCommand> other, int mismatchIndex) {
assert(false); // This game can't have conflicts.
return current;
}
}