jormungandr-bite/src/client/app/common/scripts/streaming/othello-game.ts

12 lines
232 B
TypeScript
Raw Normal View History

2018-03-07 01:48:32 -07:00
import Stream from './stream';
2018-03-15 04:53:46 -06:00
import MiOS from '../../mios';
2018-03-07 01:48:32 -07:00
export class OthelloGameStream extends Stream {
2018-03-15 04:53:46 -06:00
constructor(os: MiOS, me, game) {
super(os, 'othello-game', {
2018-04-07 12:58:11 -06:00
i: me ? me.token : null,
2018-03-07 01:48:32 -07:00
game: game.id
});
}
}