Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public abstract class SpaceShip {
  2. public health = 100;
  3.  
  4. public abstract fire();
  5. public abstract speedUp();
  6.  
  7. }
  8.  
  9. public class SpaceShipX extends SpaceShip{
  10. public void fire(){
  11. // TODO: implement
  12. }
  13.  
  14. public void speedUp() {
  15. // TODO: implement
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement