package myproject.model;

/**
 * Interface for active model objects.
 */
public interface Agent {
	public void run(double time);
}

