export interface MovementDelta {
    /** The number of rows by which to move. */
    rows: number;
    /** The number of columns by which to move. */
    cols: number;
}
