1
0
forked from mirror/misskey
mi.moris.day/src/web/app/common/scripts/streaming/othello-game.ts
syuilo 0fb52ea7eb ✌️
2018-03-14 04:37:20 +09:00

11 lines
187 B
TypeScript

import Stream from './stream';
export class OthelloGameStream extends Stream {
constructor(me, game) {
super('othello-game', {
i: me ? me.token : null,
game: game.id
});
}
}