11 lines
296 B
C#
11 lines
296 B
C#
|
namespace Syntriax.Engine.Network.Abstract;
|
||
|
|
||
|
public interface INetworkManager
|
||
|
{
|
||
|
// Action<IGameObject>? OnNetworkGameObjectInstantiated { get; set; }
|
||
|
|
||
|
INetworkCommunicator NetworkCommunicator { get; }
|
||
|
|
||
|
// Task<T> Instantiate<T>(params object?[]? args) where T : class, IGameObject;
|
||
|
}
|