11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
import Stream from './stream';
|
|
|
|
export class OthelloGameStream extends Stream {
|
|
constructor(me, game) {
|
|
super('othello-game', {
|
|
i: me.token,
|
|
game: game.id
|
|
});
|
|
}
|
|
}
|