using System.Collections; using System.Collections.Generic; namespace Net.Project.B.Interaction { /// /// 互动类型 /// public interface IWorldInteractionType { } /// /// 长按互动 /// public interface IWorldHoldingInteraction { } }