using System.Collections.Generic; using UnityEngine; public class BuffSection : MonoBehaviour { private IEnumerable _content; private void Awake() { _content = GetComponentsInChildren(); } public void Init() { _content.ForEach(b => b.gameObject.SetActive(Settings.BUFF_SECTION_ENABLE)); } public void SetShineActive(bool status) { } }