O3Bubbles09

Untitled

Feb 16th, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package O3Bubbles09.Common;
  2.  
  3. import cpw.mods.fml.common.registry.TickRegistry;
  4. import cpw.mods.fml.relauncher.Side;
  5.  
  6. public class CommonProxy {
  7. public static String BLOCKS = "/O3Bubbles09/Common/BLOCKS.png";
  8. public static String ITEMS = "/O3Bubbles09/Common/ITEMS.png";
  9.  
  10. public void registerCrap() {
  11.  
  12. }
  13.  
  14. public void registerServerTickHandler() {
  15. TickRegistry.registerTickHandler(new serverTickHandler(), Side.SERVER);
  16. }
  17.  
  18. public int newArmor(String args) {
  19. return 0;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment