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

11 lines
175 B
TypeScript
Raw Normal View History

2018-03-07 17:48:32 +09:00
import Stream from './stream';
export class OthelloGameStream extends Stream {
constructor(me, game) {
super('othello-game', {
i: me.token,
game: game.id
});
}
}