/**
 * Defines the structure of an object that acts as a (x, y) definition.
 */
export interface Vector {
    x: number;
    y: number;
}
