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