Advertisement
Guest User

Untitled

a guest
Apr 27th, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class DefaultCoolDownCapability implements ICoolDown
  2. {
  3. public int ticks;
  4.  
  5. @Override
  6. public void setCoolDown(int ticksIn) {
  7. this.ticks = ticksIn;
  8. }
  9.  
  10. @Override
  11. public int getCoolDown() { return this.ticks; }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement