summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/othello-game.ts
blob: 51a435541aa8b16dd22af003c4f1b7e5bc6a0658 (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.token,
			game: game.id
		});
	}
}