Skip to content

Instantly share code, notes, and snippets.

@Xhendos
Created September 26, 2016 07:58
Show Gist options
  • Save Xhendos/a7ccb564fd19b359cdb9a4f197ffd2e7 to your computer and use it in GitHub Desktop.
Save Xhendos/a7ccb564fd19b359cdb9a4f197ffd2e7 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectEV3
{
class Program
{
public static void Main(string[] args)
{
ProjectEV3.Task.Task[] tasks =
{
new ProjectEV3.Tasks.lMissionShark()
};
for(int i = 0; i < tasks.Length; i++)
{
if (tasks[i].canRun())
{
tasks[i].run();
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment