9 lines
211 B
C#
9 lines
211 B
C#
using System.Collections.Generic;
|
|
|
|
public class RecipeOutputRebirth
|
|
{
|
|
public string recipeName = "";
|
|
public string craftingArea = "";
|
|
public List<ItemStack> OutputItems = new List<ItemStack>();
|
|
}
|