8 lines
219 B
C#
8 lines
219 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(menuName = "Microgame/Potion", fileName = "New Microgame Potion")]
|
|
public class MicrogamePotion : ScriptableObject
|
|
{
|
|
public string potionName;
|
|
public Chemical[] chemicals;
|
|
}
|