package vehicle;

public abstract class Vehicle {
    private double weight;
    public Vehicle(){
    }
    public double getWeight(){
        return weight;
    }
    public void setWeight(double w){
        weight = w;
    }
    public abstract boolean hasWheels();
    public abstract void move();
}
