Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class FlyableHumans extends Humans {
  2. public void fly() {
  3. //implement fly
  4. }
  5. }
  6.  
  7. public class IronMan extends FlyableHumans {
  8. //implement Iron Man
  9. }
  10.  
  11. public class WarMachine extends FlyableHumans {
  12. //implement war machine
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement