mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +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);
|
|
}
|