Variable playerIdStorageUtilsConst
playerIdStorageUtils: {
getPlayerId: ((roomId: string) => string);
removeAllPlayerIds: (() => void);
removePlayerId: ((roomId: string) => void);
setPlayerId: ((roomId: string, playerId: string) => void);
} = ...
Type declaration
getPlayerId: ((roomId: string) => string)
- (roomId): string
Returns string
플레이어 ID 또는 null
removeAllPlayerIds: (() => void)
removePlayerId: ((roomId: string) => void)
- (roomId): void
Returns void
setPlayerId: ((roomId: string, playerId: string) => void)
- (roomId, playerId): void
Parameters
- roomId: string
- playerId: string
Returns void
특정 방의 플레이어 ID를 조회합니다.