using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITKit.GameSocket { public interface ISocketComponent { public string Name { get; } public object Object { get; } } public interface ISocketService:IReadOnlyDictionary { void Initialize(); } }