9 lines
187 B
C#
9 lines
187 B
C#
using Syntriax.Engine.Core;
|
|
|
|
namespace Syntriax.Engine.Network;
|
|
|
|
public interface INetworkBehaviour : IBehaviour, INetworkEntity
|
|
{
|
|
INetworkCommunicator NetworkCommunicator { get; }
|
|
}
|