asciiflow2/js-lib/common.js

13 lines
204 B
JavaScript

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