Guest User

Untitled

a guest
Oct 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package org.sirrus.powers.power;
  2.  
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5.  
  6. @Retention(RetentionPolicy.RUNTIME)
  7. public @interface PowerMainfest {
  8.  
  9. String name();
  10.  
  11. PowerType type();
  12.  
  13. String[] Authors default null;
  14.  
  15. String Author();
  16.  
  17. double Version();
  18.  
  19. }
Add Comment
Please, Sign In to add comment