This commit is contained in:
syuilo
2018-07-11 13:47:01 +09:00
parent 876f659847
commit 227cfd6e2f
8 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
import Stream from '../../stream';
import MiOS from '../../../../../mios';
export class ReversiGameStream extends Stream {
constructor(os: MiOS, me, game) {
super(os, 'games/reversi-game', {
i: me ? me.token : null,
game: game.id
});
}
}