2016-03-27 13:09:09 +08:00
|
|
|
|
namespace StardewModdingAPI.Inheritance
|
2016-03-27 06:27:07 +08:00
|
|
|
|
{
|
|
|
|
|
public struct SBareObject
|
|
|
|
|
{
|
|
|
|
|
public int parentSheetIndex { get; set; }
|
|
|
|
|
public int stack { get; set; }
|
|
|
|
|
public bool isRecipe { get; set; }
|
|
|
|
|
public int price { get; set; }
|
|
|
|
|
public int quality { get; set; }
|
|
|
|
|
|
|
|
|
|
public SBareObject(int psi, int sta, bool ir, int pri, int qua)
|
|
|
|
|
{
|
|
|
|
|
parentSheetIndex = psi;
|
|
|
|
|
stack = sta;
|
|
|
|
|
isRecipe = ir;
|
|
|
|
|
price = pri;
|
|
|
|
|
quality = qua;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-27 13:09:09 +08:00
|
|
|
|
}
|