asciiflow2/js-lib/common.js

13 lines
204 B
JavaScript
Raw Normal View History

2014-01-08 23:06:08 +00:00
/**
* Common classes.
*/
goog.provide('asciiflow.common');
/**
* @constructor
*/
asciiflow.common.Position = function(x, y) {
/** type {Number} */ this.x = x;
/** type {Number} */ this.y = y;
};