using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Ichni.RhythmGame { public abstract class SubmoduleBase { public BaseElement attachedElement; public SubmoduleBase(BaseElement attachedElement) { this.attachedElement = attachedElement; } public virtual void InitialRefresh() { } } }