wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 13  →  ?path2? @ 14
/Geo/GeographicCoordinate.cs
@@ -0,0 +1,21 @@
///////////////////////////////////////////////////////////////////////////
// Copyright (C) Wizardry and Steamworks 2016 - License: GNU GPLv3 //
// Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
// rights of fair usage, the disclaimer and warranty conditions. //
///////////////////////////////////////////////////////////////////////////
 
namespace wasSharp.Geo
{
public class GeographicCoordinate
{
public GeographicCoordinate(double latitude, double longitude)
{
Latitude = latitude;
Longitude = longitude;
}
 
public double Latitude { get; }
 
public double Longitude { get; }
}
}