13 lines
223 B
C#
13 lines
223 B
C#
|
using LiteNetLib;
|
||
|
|
||
|
namespace Syntriax.Engine.Network.Abstract;
|
||
|
|
||
|
public interface INetworkCommunicator
|
||
|
{
|
||
|
EventBasedNetListener Listener { get; }
|
||
|
NetManager Manager { get; }
|
||
|
|
||
|
void PollEvents();
|
||
|
void Stop();
|
||
|
}
|