using System.Collections;
using System;

public interface IScheduler
{
	bool loadDLLs();
	String getSelectedDLL();
	void addDLL(String DLLToAdd);
}