11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
export class PrefabNames {
|
|
private static login: string = 'prefabs/LoginPanel'
|
|
public static get Login() {
|
|
return this.login
|
|
}
|
|
}
|
|
|
|
export enum EventType {
|
|
Ws = 'ws-message',
|
|
}
|