export interface IAsset {
    x: number;
    y: number;
    shape: number[][];
    isDestroyed: boolean;
}
