Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2021
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1.  
  2. @Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION)
  3. public class TutorialMod {
  4.  
  5.     @Mod.Instance
  6.     public static TutorialMod instance;
  7.  
  8.     @SidedProxy(clientSide = Reference.CLIENT_PROXY, serverSide = Reference.SERVER_PROXY)
  9.     public static CommonProxy proxy;
  10.  
  11.     @EventHandler
  12.     public void preInit(FMLPreInitializationEvent event) {
  13.  
  14.     }
  15.  
  16.     @EventHandler
  17.     public void init(FMLInitializationEvent event) {
  18.  
  19.     }
  20.  
  21.     @EventHandler
  22.     public void postInit(FMLPostInitializationEvent event) {
  23.  
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement