multyx
Version:
Framework designed to simplify the creation of multiplayer browser games by addressing the complexities of managing server-client communication, shared state, and input handling
14 lines • 488 B
TypeScript
/**
* Generate a unique identifier across Multyx ecosystem
* @param length Length of UUID
* @param radix Base number to use for UUID characters
* @returns
*/
export declare function GenerateUUID(length?: number, radix?: number): string;
/**
* Add a UUID to the Multyx ecosystem global set
* @param uuid UUID to add to set
* @returns True if success, false if UUID already exists in set
*/
export declare function AddUUID(uuid: string): boolean;
//# sourceMappingURL=uuid.d.ts.map