Add basic gameobject system
This commit is contained in:
parent
d5be727040
commit
efb01476b2
33 changed files with 399 additions and 171 deletions
|
|
@ -1,4 +1,8 @@
|
|||
import { Id } from './identity';
|
||||
import { v4 } from 'uuid';
|
||||
|
||||
export class IdentityManager {
|
||||
public static sourceId: string;
|
||||
public static targetId: string;
|
||||
public static generateId(): Id {
|
||||
return v4();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue