1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5 package cz.cuni.amis.pogamut.usar2004.agent.module.state;
6
7 import cz.cuni.amis.pogamut.usar2004.agent.module.datatypes.VehicleType;
8
9 /**
10 * State message representative for Legged robot.
11 *
12 * @author vejmanm
13 */
14 public class StateLegged extends SuperState
15 {
16 public static final VehicleType type = VehicleType.LEGGED_ROBOT;
17
18 /**
19 * Ctor. State type describes particular subject about which we want to know
20 * about. It is used to distinguish incoming message from the server.
21 */
22 public StateLegged()
23 {
24 super(type);
25 }
26 }