Guest User

Untitled

a guest
Sep 5th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. static enum Style3 {
  2.     FIRE_BALL(false),
  3.     ICE_BALL(true),
  4.     FIRE_ARROW(false),
  5.     ICE_ARROW(true);
  6.  
  7.     private final boolean cold;
  8.  
  9.     public Style2(boolean cold) {
  10.         this.cold = cold;
  11.     }
  12.  
  13.     public boolean isCold(){
  14.         return cold;
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment