Created
September 26, 2016 07:58
-
-
Save Xhendos/a7ccb564fd19b359cdb9a4f197ffd2e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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