Portl

Untitled

Oct 3rd, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package me.fulpix.plastic.events;
  2.  
  3. import com.darkmagician6.eventapi.events.Event;
  4.  
  5. public class EventUpdate implements Event {
  6.  
  7. public boolean Cancellable;
  8.  
  9. public boolean isCancellable() {
  10. return Cancellable;
  11. }
  12.  
  13. public void setCancellable(boolean cancellable) {
  14. Cancellable = cancellable;
  15. }
  16.  
  17.  
  18. }
Add Comment
Please, Sign In to add comment