Files
CortexCore fd39099061 init
2024-01-23 02:56:26 +08:00

21 lines
493 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BITKit
{
public class StringProviders : Provider<string>
{
public Provider<string>[] providers;
public override string Get()
{
throw new System.NotImplementedException();
}
public override void Set(string t)
{
foreach (var provider in providers)
{
provider.Set(t);
}
}
}
}