11 lines
187 B
TypeScript
Raw Permalink Normal View History

2025-07-01 00:00:42 +08:00
export class PrefabNames {
private static login: string = 'prefabs/LoginPanel'
public static get Login() {
return this.login
}
}
export enum EventType {
Ws = 'ws-message',
}