package Agents.Behaviour; /** * This is a interface for the general vehicle behaviours. This interface modifies * the general Behavior to suite the VehicleAgent behaviours. * VehicleMoveBehaviour implements this interface for vehicle agent movement. * @see Behaviour * @see VehicleMoveBehaviour * @see Vehicle */ public interface VehicleBehaviour extends Behaviour { }