@socialgorithm/uabc
Version:
Ultimate Algorithm Battle Client
13 lines (12 loc) • 413 B
TypeScript
import { IOptions } from "../cli/options";
import OnlinePlayer from "../player/Online";
import Client from "./Client";
export default class OnlineClient extends Client {
protected playerB: OnlinePlayer;
private tournamentServerSocket;
private gameServerSocket;
constructor(options: IOptions);
onPlayerAData(payload: string): void;
onPlayerBData(data: string): void;
private connect;
}