UNPKG

@awayjs/core

Version:
10 lines (9 loc) 153 B
export class UUID { private static id: number = 0; public static get Current() { return this.id; } public static Next() { return this.id++; } }