2025-08-12 04:28:23 +00:00
|
|
|
// <auto-generated>
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
2025-08-28 03:49:47 +00:00
|
|
|
[CreateAssetMenu(fileName = "CustomerPoolDataAsset", menuName = "GoogleSheet/CustomerPoolDataAsset")]
|
|
|
|
public class CustomerPoolDataAsset : DataAsset<CustomerPoolDataEntry>
|
2025-08-12 04:58:25 +00:00
|
|
|
{
|
|
|
|
protected override void Initialize()
|
|
|
|
{
|
|
|
|
base.Initialize();
|
|
|
|
|
|
|
|
foreach (var customerPoolData in _datas)
|
|
|
|
{
|
|
|
|
ParseDelimitedListInPlace(customerPoolData.Customers, customerPoolData.ValidCustomers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-08-12 04:28:23 +00:00
|
|
|
}
|