mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
7 lines
212 B
TypeScript
7 lines
212 B
TypeScript
import { GetRoomSessionManager } from '@nitrots/nitro-renderer';
|
|
|
|
export function CreateRoomSession(roomId: number, password: string = null): void
|
|
{
|
|
GetRoomSessionManager().createSession(roomId, password);
|
|
}
|