BREAKING CHANGE: renamed namespace & assembly names
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>Syntriax.Engine.Systems.Network</RootNamespace>
|
||||
<AssemblyName>Syntriax.Engine.Integration.LiteNetLib</AssemblyName>
|
||||
<RootNamespace>Engine.Systems.Network</RootNamespace>
|
||||
<AssemblyName>Engine.Integration.LiteNetLib</AssemblyName>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -3,10 +3,10 @@ using System.Net.Sockets;
|
||||
using LiteNetLib;
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Syntriax.Engine.Core.Debug;
|
||||
using Engine.Core;
|
||||
using Engine.Core.Debug;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
public class LiteNetLibClient : LiteNetLibCommunicatorBase, INetworkCommunicatorClient
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using LiteNetLib;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
public record class LiteNetLibClientConnection(NetPeer NetPeer) : IConnection
|
||||
{
|
||||
|
||||
@@ -3,10 +3,10 @@ using System.Reflection;
|
||||
using LiteNetLib;
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Syntriax.Engine.Core.Debug;
|
||||
using Engine.Core;
|
||||
using Engine.Core.Debug;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
public abstract class LiteNetLibCommunicatorBase : Behaviour, INetworkCommunicator
|
||||
{
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
using LiteNetLib;
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Syntriax.Engine.Core.Debug;
|
||||
using Engine.Core;
|
||||
using Engine.Core.Debug;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
public class LiteNetLibServer : LiteNetLibCommunicatorBase, INetworkCommunicatorServer
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using LiteNetLib;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
public record class LiteNetLibServerConnection(NetPeer NetPeer) : IConnection
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class AABBNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class CircleNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class ColorHSVNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class ColorRGBANetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class ColorRGBNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class Line2DEquationNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class Line2DNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class Projection1DNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class QuaternionNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class Shape2DNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class TriangleNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class Vector2DNetPacker
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using LiteNetLib.Utils;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Systems.Network;
|
||||
namespace Engine.Systems.Network;
|
||||
|
||||
internal static class Vector3DNetPacker
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user