microgame progress

This commit is contained in:
myondev 2026-09-04 11:51:28 -07:00
parent ecff3c6b69
commit 79fcc7ce34
16 changed files with 2008 additions and 13 deletions

View file

@ -0,0 +1,8 @@
using UnityEngine;
[CreateAssetMenu(menuName = "Microgame/Potion", fileName = "New Microgame Potion")]
public class MicrogamePotion : ScriptableObject
{
public string potionName;
public Chemical[] chemicals;
}