mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
22 lines
429 B
C#
22 lines
429 B
C#
namespace MoleMole
|
|
{
|
|
public class NeedItemData
|
|
{
|
|
public readonly int itemMetaID;
|
|
|
|
public readonly int itemNum;
|
|
|
|
public readonly StorageDataItemBase itemData;
|
|
|
|
public bool enough;
|
|
|
|
public NeedItemData(int itemMetaID, int itemNum)
|
|
{
|
|
this.itemMetaID = itemMetaID;
|
|
this.itemNum = itemNum;
|
|
itemData = Singleton<StorageModule>.Instance.GetDummyStorageDataItem(itemMetaID);
|
|
itemData.number = itemNum;
|
|
}
|
|
}
|
|
}
|