using System; using System.Collections; using System.Collections.Generic; using Pinwheel.Griffin; using UnityEngine; namespace BITKit.WorldChunk { public class PolarisTerrainChunkManager : MonoBehaviour { private void Start() { foreach (var x in GetComponentsInChildren()) { x.gameObject.AddComponent(); } } } }