public Drone() { name = "Drone"; moveStrategy = new Flying(); }
public Bird() { name = "Bird"; moveStrategy = new Flying(); }