1 package cz.cuni.amis.pogamut.multi.params;
2
3 import cz.cuni.amis.pogamut.base.agent.params.IRemoteAgentParameters;
4 import cz.cuni.amis.pogamut.multi.communication.worldview.ISharedWorldView;
5
6 /**
7 * Combines {@link ITeamAgentParameters} and {@link IRemoteAgentParameters}.
8 *
9 * @author Jimmy
10 *
11 * @param <SHARED_WORLDVIEW>
12 */
13 public interface ITeamRemoteAgentParameters<SHARED_WORLDVIEW extends ISharedWorldView> extends ITeamAgentParameters<SHARED_WORLDVIEW>, IRemoteAgentParameters {
14
15 }