using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITKit { public abstract class Multiplex : Provider, IProvider { #if UNITY_EDITOR [SerializeField] string remarks; #endif public bool active; public bool Get() => active; public void Set(bool x) => active = x; } }