001package myproject.model;
002
003/**
004 * Interface for active model objects.
005 */
006public interface Agent {
007        public void run(double time);
008}
009