// FVector2
function FVector2(aX, aY) 
{
    this.x = aX;
    this.y = aY;
}
FVector2.prototype.x;
FVector2.prototype.y;

FVector2.prototype.toGLang = function()
{
	return new GLatLng(this.x, this.y);
}
FVector2.prototype.toGSize = function()
{
	return new GSize(this.x, this.y);
}
// EOF FVector2