1 package cz.cuni.amis.pogamut.usar2004.agent.module.configuration;
2
3 import cz.cuni.amis.pogamut.usar2004.agent.module.datatypes.ConfigType;
4
5 /**
6 * Configuration message representative for Legged robots.
7 *
8 * @author vejmanm
9 */
10 public class ConfigLegged extends VehicleConfiguration
11 {
12 public static final ConfigType type = ConfigType.LEGGED_ROBOT;
13
14 /**
15 * Ctor. Configuration type describes particular subject about which
16 * we want to know about. It is used to distinguish incoming message from
17 * the server.
18 */
19 public ConfigLegged()
20 {
21 super(type);
22 }
23 }