1
This commit is contained in:
16
Src/Unity/Socket/ISocketComponent.cs
Normal file
16
Src/Unity/Socket/ISocketComponent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user