position.js 56 B

1234
  1. var Position = function(x, y) {
  2. this.x=x;
  3. this.y=y;
  4. };