Advertisement
lLuffy

Untitled

Jul 27th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package com.zabqer.plugin.zs;
  2.  
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5.  
  6. /*Интерфейс для комманд*/
  7. @Retention(RetentionPolicy.RUNTIME)
  8. public @interface ZCommand {
  9.  
  10. String[] aliases();
  11.  
  12. String usage() default "";
  13.  
  14. String desc();
  15.  
  16. boolean onlyplayer() default false;
  17.  
  18. String help() default "";
  19.  
  20. String permissions() default "zs.default";
  21.  
  22. int args() default 0;
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement