monkeeShark/src/web/app/common/scripts/streaming/othello-game.ts
syuilo 1439c3245b ✌️
2018-03-15 19:53:46 +09:00

11 lines
232 B
TypeScript

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
});
}
}