2024-02-09 11:50:16 +03:00
|
|
|
namespace Syntriax.Engine.Network.Abstract;
|
|
|
|
|
|
|
|
public interface INetworkManager
|
|
|
|
{
|
2024-02-12 16:35:24 +03:00
|
|
|
// Action<IGameObject>? OnNetworkGameObjectInstantiated { get; set; }
|
2024-02-09 11:50:16 +03:00
|
|
|
|
2024-02-12 16:35:24 +03:00
|
|
|
INetworkCommunicator NetworkCommunicator { get; }
|
2024-02-09 11:50:16 +03:00
|
|
|
|
2024-02-12 16:35:24 +03:00
|
|
|
// Task<T> Instantiate<T>(params object?[]? args) where T : class, IGameObject;
|
2024-02-09 11:50:16 +03:00
|
|
|
}
|