🆙 added latest changes

This commit is contained in:
duckietm
2024-07-04 15:03:26 +02:00
parent d5a3a05c40
commit bd09ea8b25
116 changed files with 2246 additions and 1794 deletions
@@ -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';