TeaWeb/web/app/voice/VoiceClient.ts
2020-09-07 12:42:00 +02:00

15 lines
No EOL
397 B
TypeScript

import {VoiceClient} from "tc-shared/voice/VoiceClient";
import {WebVoicePlayer} from "tc-backend/web/voice/VoicePlayer";
export class VoiceClientController extends WebVoicePlayer implements VoiceClient {
private readonly clientId: number;
constructor(clientId) {
super();
this.clientId = clientId;
}
getClientId(): number {
return this.clientId;
}
}