package com.common;
import java.util.*;

public class EntityProperties
{
  int depth;
  float entityValue;
  int height;
  int length;
  float topSpeed;
  float turnRadius;
  float turnRate;
  int width;

  public void setDepth(int _depth)
  {
    depth = _depth;
  }
  public int getDepth()
  {
    return depth;
  }
  public void setEntityValue(float _value)
  {
    entityValue = _value;
  }
  public float getEntityValue()
  {
    return entityValue;
  }
  public void setHeight(int _height)
  {
    height = _height;
  }
  public int getHeight()
  {
    return height;
  }
  public void setLength(int _length)
  {
    length = _length;
  }
  public int getLength()
  {
    return length;
  }
  public void setTopSpeed(float _topSpeed)
  {
    topSpeed = _topSpeed;
  }
  public float getTopSpeed()
  {
    return topSpeed;
  }
  public void setTurnRadius(float _radius)
  {
    turnRadius = _radius;
  }
  public float getTurnRadius()
  {
    return turnRadius;
  }
  public void setTurnRate(float _turnRate)
  {
    turnRate = _turnRate;
  }
  public float getTurnRate()
  {
    return turnRate;
  }
  public void setWidth(int _width)
  {
    width = _width;
  }
  public int getWidth()
  {
    return width;
  }
}
