using UnityEngine; using System.Collections.Generic; using System.Collections; [CreateAssetMenu(fileName = "Level", menuName = "ScriptableObjects/Level", order = 1)] public class LevelScriptable : ScriptableObject { public List rgbList; public List rgbSaturatedList; public List dotCount; public List displaySprite; public List displayString; }