using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "ProductNameFormatter", menuName = "ProductName/Formatter")] public class ProductNameFormatter : ScriptableObject { public virtual string FormatProductNameForDownload(string productName) { return productName.Replace("_iOS", ".nc"); } }