phaser3-rex-plugins
Version:
25 lines (24 loc) • 570 B
TypeScript
/**
* Set the current serial number.
*
* @param value - The serial number value.
*/
export function SetSerialNumber(value?: number | null): void;
/**
* Set the serial number prefix.
*
* @param prefix - The prefix string.
*/
export function SetSerialNumberPrefix(prefix: string): void;
/**
* Get the current serial number.
*
* @returns The current serial number or null.
*/
export function GetSerialNumber(): number | null;
/**
* Create a new unique id.
*
* @returns The generated id string.
*/
export function CreateID(): string;