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

16 lines
305 B
C#
Raw Normal View History

2024-02-08 17:59:04 +03:00
using Syntriax.Engine.Core.Abstract;
namespace Syntriax.Engine.Network.Abstract;
2024-02-08 17:59:04 +03:00
public interface INetworkBehaviour : IBehaviour
{
int NetworkId { get; }
bool LocalAssigned { get; }
bool IsServer { get; }
bool IsClient { get; }
INetworkCommunicator NetworkCommunicator { get; }
}