summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/othello-game.ts
blob: cdf46d5d8d7ffb5f648ec7d0ea7f66ae100cd304 (plain)
1
2
3
4
5
6
7
8
9
10
import Stream from './stream';

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