blob: b85af8f72b01c211d664b64c9625ef6549c2b664 (
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.token : null,
game: game.id
});
}
}
|