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