﻿if ( !window.Graphics )
    window.Graphics = {};
    
Graphics.Point = function( x,y )
{
    this.x = x;
    this.y = y;
}

Graphics.Point.prototype.x = 0;
Graphics.Point.prototype.y = 0;