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

16 lines
318 B
TypeScript
Raw Permalink Normal View History

/// <reference path="../common/DiffLog.ts" />
2017-09-24 22:23:22 +00:00
module TK.SpaceTac {
/**
* Log of diffs that change the state of a battle
*/
export class BattleLog extends DiffLog<Battle> {
}
2014-12-31 00:00:00 +00:00
/**
* Client for a battle log
*/
export class BattleLogClient extends DiffLogClient<Battle> {
2014-12-31 00:00:00 +00:00
}
2015-01-07 00:00:00 +00:00
}