diff options
Diffstat (limited to 'src/web/app/common/scripts/streaming/othello-game.ts')
| -rw-r--r-- | src/web/app/common/scripts/streaming/othello-game.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/streaming/othello-game.ts b/src/web/app/common/scripts/streaming/othello-game.ts new file mode 100644 index 0000000000..51a435541a --- /dev/null +++ b/src/web/app/common/scripts/streaming/othello-game.ts @@ -0,0 +1,10 @@ +import Stream from './stream'; + +export class OthelloGameStream extends Stream { + constructor(me, game) { + super('othello-game', { + i: me.token, + game: game.id + }); + } +} |