You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
import { IRoomObject } from '@nitrots/api';
|
|
import { RoomObjectEvent } from './RoomObjectEvent';
|
|
|
|
export class RoomObjectFloorHoleEvent extends RoomObjectEvent
|
|
{
|
|
public static ADD_HOLE: string = 'ROFHO_ADD_HOLE';
|
|
public static REMOVE_HOLE: string = 'ROFHO_REMOVE_HOLE';
|
|
|
|
constructor(k: string, _arg_2: IRoomObject)
|
|
{
|
|
super(k, _arg_2);
|
|
}
|
|
}
|