1
0
Fork 0
spacetac/src/core/BattleLog.ts

15 lines
304 B
TypeScript
Raw Normal View History

2019-11-21 22:14:27 +00:00
import { DiffLog, DiffLogClient } from "../common/DiffLog";
import { Battle } from "./Battle";
2019-11-21 22:14:27 +00:00
/**
* Log of diffs that change the state of a battle
*/
export class BattleLog extends DiffLog<Battle> {
}
2014-12-31 00:00:00 +00:00
2019-11-21 22:14:27 +00:00
/**
* Client for a battle log
*/
export class BattleLogClient extends DiffLogClient<Battle> {
2015-01-07 00:00:00 +00:00
}