gameClient/assets/scripts/constant.ts

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',
}