mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
|
import Stream from './stream';
|
||
|
|
||
|
export class OthelloGameStream extends Stream {
|
||
|
constructor(me, game) {
|
||
|
super('othello-game', {
|
||
|
i: me.token,
|
||
|
game: game.id
|
||
|
});
|
||
|
}
|
||
|
}
|