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
27 lines
740 B
TypeScript
27 lines
740 B
TypeScript
import { NitroEvent } from '../core';
|
|
|
|
export class RoomEngineEvent extends NitroEvent
|
|
{
|
|
public static INITIALIZED: string = 'REE_INITIALIZED';
|
|
public static ENGINE_INITIALIZED: string = 'REE_ENGINE_INITIALIZED';
|
|
public static OBJECTS_INITIALIZED: string = 'REE_OBJECTS_INITIALIZED';
|
|
public static NORMAL_MODE: string = 'REE_NORMAL_MODE';
|
|
public static GAME_MODE: string = 'REE_GAME_MODE';
|
|
public static ROOM_ZOOMED: string = 'REE_ROOM_ZOOMED';
|
|
public static DISPOSED: string = 'REE_DISPOSED';
|
|
|
|
private _roomId: number;
|
|
|
|
constructor(type: string, roomId: number)
|
|
{
|
|
super(type);
|
|
|
|
this._roomId = roomId;
|
|
}
|
|
|
|
public get roomId(): number
|
|
{
|
|
return this._roomId;
|
|
}
|
|
}
|