mirror of
https://github.com/tetreum/brickcraft.git
synced 2026-02-06 18:08:40 -06:00
16 lines
277 B
C#
16 lines
277 B
C#
namespace Brickcraft
|
|
{
|
|
public class Recipe
|
|
{
|
|
public int itemId;
|
|
public int quantity = 1;
|
|
public Ingredient[] ingredients;
|
|
|
|
public Item item {
|
|
get {
|
|
return Server.items[itemId];
|
|
}
|
|
}
|
|
}
|
|
}
|