Guest User

DedicatedServerProxy

a guest
Oct 14th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. package passage.extrafurniture;
  2.  
  3. import net.minecraftforge.fml.common.event.FMLInitializationEvent;
  4. import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
  5. import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
  6.  
  7. public class DedicatedServerProxy extends CommonProxy{
  8.  
  9. @Override
  10. public void preInit(FMLPreInitializationEvent e) {
  11. // TODO Auto-generated method stub
  12. super.preInit(e);
  13. }
  14.  
  15. @Override
  16. public void init(FMLInitializationEvent e) {
  17. // TODO Auto-generated method stub
  18. super.init(e);
  19. }
  20.  
  21. @Override
  22. public void postInit(FMLPostInitializationEvent e) {
  23. // TODO Auto-generated method stub
  24. super.postInit(e);
  25. }
  26.  
  27. }
Add Comment
Please, Sign In to add comment