import {Color} from "../../../../../core/color/Color";

export class Decal {
    /**
     * Path to image
     */
    uri: string

    /**
     * Draw order, higher values will be drawn on top of lower values when there's an overlap
     */
    priority: number

    readonly color: Color
}
