@xmobitea/gn-server-cloudscript-editor
Version:
GearN Server Cloudscript Editor by XmobiTea (Pro)
16 lines (13 loc) • 390 B
TypeScript
interface ServerDetail {
ipV4Address: string;
ports: {
name: string;
publicPort: number;
privatePort: number;
protocol: 1 | 2; // 1 = TCP, 2 = UDP
}[];
}
interface CloudScriptMatchmaking {
confirmServerDetail(gameId: string, matchmakingTicketCanMatch: MatchmakingTicketCanMatch, serverDetail: ServerDetail);
}
declare const matchmaking: CloudScriptMatchmaking;