You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
22 lines
374 B
TypeScript
22 lines
374 B
TypeScript
export class GuideToolMessage
|
|
{
|
|
private _message: string;
|
|
private _roomId: number;
|
|
|
|
constructor(message: string, roomId?: number)
|
|
{
|
|
this._message = message;
|
|
this._roomId = roomId;
|
|
}
|
|
|
|
public get message(): string
|
|
{
|
|
return this._message;
|
|
}
|
|
|
|
public get roomId(): number
|
|
{
|
|
return this._roomId;
|
|
}
|
|
}
|