Advertisement
Guest User

Untitled

a guest
Nov 6th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. package net.gamersmods.fuelresourceful.lib;
  2.  
  3. public class Reference {
  4.  
  5. /**
  6. * The mod id
  7. */
  8. public static final String MOD_ID = "fuelresourceful";
  9.  
  10. /**
  11. * The mod name
  12. */
  13. public static final String MOD_NAME = "Fuel Resourceful";
  14.  
  15. /**
  16. * The version of the mod
  17. */
  18. public static final String VERSION = "1.0 Beta";
  19.  
  20. /**
  21. * The common proxy class for the mod
  22. */
  23. public static final String SERVER_PROXY_CLASS = "net.gamersmods.fuelresourceful.proxy.CommonProxy";
  24.  
  25. /**
  26. * The client specific proxy class for the mod
  27. */
  28. public static final String CLIENT_PROXY_CLASS = "net.gamersmods.fuelresourceful.proxy.ClientProxy";
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement