Vehicle.java
Go to the documentation of this file.00001 package ansim;
00002
00007 public class Vehicle {
00008
00015 public Vehicle(String id, float x, float y) {
00016 this.id = id;
00017 this.x = x;
00018 this.y = y;
00019 }
00020
00021 public String id;
00022 public float x;
00023 public float y;
00024 }