Advertisement
BritishBrohood

ModPropertyConfig

Sep 30th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //This is the ModConfigProperty class
  2.  
  3. @Retention(RetentionPolicy.RUNTIME)
  4. @Target({ElementType.FIELD})
  5. public @interface ModConfigProperty {
  6. String name();
  7.  
  8. String category();
  9.  
  10. String comment() default "";
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement