// using UnityEngine; namespace DDD { [CreateAssetMenu(fileName = "CustomerPoolDataAsset", menuName = "GoogleSheet/CustomerPoolDataAsset")] public class CustomerPoolDataAsset : DataAsset { protected override void Initialize() { base.Initialize(); foreach (var customerPoolData in _datas) { ParseDelimitedListInPlace(customerPoolData.Customers, customerPoolData.ValidCustomers); } } } }