/** * Common classes. */ goog.provide('asciiflow.common'); /** * @constructor */ asciiflow.common.Position = function(x, y) { /** type {Number} */ this.x = x; /** type {Number} */ this.y = y; };