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
🆙 added latest changes
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { INitroEvent } from '../../../common';
|
||||
|
||||
export interface IRoomAreaSelectionManager
|
||||
{
|
||||
startSelecting(): void;
|
||||
clearHighlight(): void;
|
||||
handleTileMouseEvent(event: INitroEvent): void;
|
||||
finishSelecting(): boolean;
|
||||
activate(callback: (rootX: number, rootY: number, width: number, height: number) => void, highlightType: string): boolean;
|
||||
deactivate(): void;
|
||||
setHighlight(rootX: number, rootY: number, width: number, height: number): void;
|
||||
readonly areaSelectionState: number;
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
export * from './IFurnitureStackingHeightMap';
|
||||
export * from './ILegacyWallGeometry';
|
||||
export * from './IRoomAreaSelectionManager';
|
||||
export * from './ITileObjectMap';
|
||||
export * from './ObjectRolling';
|
||||
|
||||
Reference in New Issue
Block a user