Advertisement
Guest User

sprintevent

a guest
Jun 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //
  2. // Decompiled by Procyon v0.5.30
  3. //
  4.  
  5. package me.aristhena.event.events;
  6.  
  7. import me.aristhena.event.Event;
  8.  
  9. public class SprintEvent extends Event
  10. {
  11. private boolean sprinting;
  12.  
  13. public SprintEvent(final boolean sprinting) {
  14. this.setSprinting(sprinting);
  15. }
  16.  
  17. public boolean isSprinting() {
  18. return this.sprinting;
  19. }
  20.  
  21. public void setSprinting(final boolean sprinting) {
  22. this.sprinting = sprinting;
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement