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