BolterLibrary.Navigation.Navigation C# (CSharp) Method

Navigation() public method

public Navigation ( ) : System
return System
        public Navigation()
        {
            var filepath = InterProcessCom.ConfigPath + "\\waypoints.xml";
            _Waypoints = !File.Exists(filepath) ? new Waypoints() : XmlSerializationHelper.Deserialize<Waypoints>(filepath);
        }