Advertisement
Kalciphoz

Mod Extension

Jun 30th, 2016
3,252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. namespace TutorialProject
  2. {
  3.     public class ExampleMod : Terraria.ModLoader.Mod
  4.     {
  5.         public override void AddRecipes()
  6.         {
  7.             Terraria.ModLoader.ModRecipe recipe = new Terraria.ModLoader.ModRecipe(this);
  8.             recipe.SetResult("Meowmere");
  9.             recipe.AddRecipe();
  10.  
  11.             base.AddRecipes(); //This is redundant
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement