blob: f34ef3514770d49f47890847a8fee6f864548f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import Stream from './stream';
import MiOS from '../../mios';
export class OthelloGameStream extends Stream {
constructor(os: MiOS, me, game) {
super(os, 'othello-game', {
i: me ? me.account.token : null,
game: game.id
});
}
}
|