import { DiffLog, DiffLogClient } from "../common/DiffLog"; import { Battle } from "./Battle"; /** * Log of diffs that change the state of a battle */ export class BattleLog extends DiffLog { } /** * Client for a battle log */ export class BattleLogClient extends DiffLogClient { }