Apparently the documentation file isn't being generated any more, so I'll just pop the interfaces here for your perusal.
IMyRemoteControl.cs
The IMyRemoteControl and IMyShipController update
IMyRemoteControl.cs
Code:
/// <summary>
/// Provides basic information about a waypoint.
/// </summary>
public struct MyWaypointInfo
{
/// <summary>
/// The waypoint name
/// </summary>
public readonly string Name;
/// <summary>
/// The coordinates of this waypoint
/// </summary>
public...