17 lines
356 B
C#
17 lines
356 B
C#
|
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<string,ISocketComponent>
|
||
|
{
|
||
|
void Initialize();
|
||
|
}
|
||
|
}
|