package Strategy; // a thing that can fly public interface FlyingThing { public void fly(int distance, String dir); }