Engine-Pong/Game/Network/Abstract/INetworkCommunicator.cs

13 lines
223 B
C#
Raw Normal View History

2024-07-15 17:00:04 +03:00
using LiteNetLib;
namespace Syntriax.Engine.Network.Abstract;
public interface INetworkCommunicator
{
EventBasedNetListener Listener { get; }
NetManager Manager { get; }
void PollEvents();
void Stop();
}