22 lines
331 B
C#
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;
|
||
|
|
}
|