summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/streaming/othello-game.ts
blob: 9e36f647bbc6b4e94f0cd0ac62e34c768152d7df (plain)
1
2
3
4
5
6
7
8
9
10
11
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
		});
	}
}