Files
StoreSim/Assets/Scripts/StockInfo.cs
2026-05-28 10:16:15 +01:00

22 lines
331 B
C#

using UnityEngine;
[System.Serializable]
public class StockInfo
{
public string name;
public enum StockType
{
Produce,
Dairy,
Meat,
Bakery,
Frozen,
Cereal,
bigDrink,
chipsTube,
fruit,
fruitLarge
}
public StockType typeOfStock;
}