You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
541 B
20 lines
541 B
namespace Minecraft.Crafting.Api.Definitions
|
|
{
|
|
using System.Text.Json.Serialization;
|
|
|
|
public class RecipeDefinition
|
|
{
|
|
//[JsonPropertyName("ingredients")]
|
|
//public IngredientElement[] Ingredients { get; set; }
|
|
|
|
[JsonPropertyName("result")]
|
|
public RecipeResultDefinition Result { get; set; }
|
|
|
|
[JsonPropertyName("inShape")]
|
|
public RecipeInShapeDefinition[][] InShape { get; set; }
|
|
|
|
//[JsonPropertyName("outShape")]
|
|
//public long?[][] OutShape { get; set; }
|
|
}
|
|
}
|