16 lines
409 B
C#
16 lines
409 B
C#
using Ashwild.Inventory;
|
|
|
|
namespace Ashwild.Building
|
|
{
|
|
/// <summary>
|
|
/// One resource line of a buildable's price: an authored item and how many of it a single
|
|
/// placement consumes. Mirrors CraftingIngredient — plain authoring data, no behaviour.
|
|
/// </summary>
|
|
[System.Serializable]
|
|
public struct BuildCost
|
|
{
|
|
public ItemData item;
|
|
public int quantity;
|
|
}
|
|
}
|