Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. EntityType type;
  2. Location loc;
  3. String display;
  4. boolean ai;
  5.  
  6. enum EntityType{
  7. ZOMBIE
  8. }
  9.  
  10. public EntityAPI(EntityType type, Location loc, String display, boolean ai){
  11. this.type = type;
  12. this.loc = loc;
  13. this.display = display;
  14. this.ai = ai;
  15. }
  16.  
  17. public void spawn(){
  18. switch(){
  19.  
  20.  
  21.  
  22. }
  23. }
  24.  
  25. public void dispawn(){
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement