Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package fr.elias.eliasgun.common;
  2.  
  3. public interface IGrenade
  4. {
  5. public static enum EnumGrenadeType
  6. {
  7. FRAG("frag"),
  8. FLASHBANG("flashbang"),
  9. SMOKE("smoke"),
  10. STICKY("sticky"),
  11. MOLOTOV("molotov");
  12.  
  13. public String name;
  14.  
  15. EnumGrenadeType(String s)
  16. {
  17. name = s;
  18. }
  19. }
  20. public EnumGrenadeType getGrenadeType();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement