Skip to content

Instantly share code, notes, and snippets.

@ionoy
Created May 29, 2014 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ionoy/b223c0d66159e9295c73 to your computer and use it in GitHub Desktop.
Save ionoy/b223c0d66159e9295c73 to your computer and use it in GitHub Desktop.
public const int WaitOutRange = 367;
public const int SkipInRange = 368;
public const int SkipOutRange = 369;
public const int WaitHdgInRange = 370;
public const int WaitHdgOutRange = 371;
public const int SkipHdgInRange = 372;
public const int SkipHdgOutRange = 373;
public const int RotateRelativeWaypoint = 374;
private static readonly Dictionary<int, string> Translations;
static Commands()
{
Translations = typeof(Commands).GetFields()
.ToDictionary(f => (int)f.GetRawConstantValue(), f => f.Name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment