using System.Threading.Tasks; using ColdMint.scripts.map.dateBean; namespace ColdMint.scripts.map.interfaces; /// /// Room injection processor /// 房间注入处理器 /// public interface IRoomInjectionProcessor { /// /// The room injection processor has an ID /// 房间注入处理器有一个ID /// /// public string GetId(); /// /// The processing method should return to the room to place the data /// 处理方法,应当返回房间放置数据 /// /// public Task Processor(); }