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

12 lines
232 B
TypeScript
Raw Normal View History

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