using System.Collections; using System.Collections.Generic; using UnityEngine; public class CombinedBlock : LogicBlock { [SerializeField] protected List SubBlocks ; protected override void BlockLogic(Character player) { throw new System.NotImplementedException(); } }