/// <summary>
 /// your main function. ideally when using the environment you dont want it to look any different from this.
 /// </summary>
 /// <param name="args">the string the pb gets when run. This will get split by spaces inside of <c>Tick()</c></param>
 /// <param name="updateType"></param>
 void Main(string args, UpdateType updateType)
 {
     // this calls for command and job execution. DO NOT CALL THIS MORE THAN ONCE per call of Main()
     Env.Tick(args, updateType);
 }