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