Initial Commit

This commit is contained in:
2026-05-28 10:16:15 +01:00
commit 405ae3b309
13091 changed files with 2149948 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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;
}