remove tcp GameServer and rename SDKServer

This commit is contained in:
raphaeIl
2025-01-13 02:10:08 -05:00
parent fe09261f42
commit c331b9b89a
19 changed files with 4425 additions and 715 deletions

View File

@@ -5,10 +5,10 @@ using Serilog;
using Novaria.Common.Core;
using Proto;
using Google.Protobuf;
using Novaria.SDKServer.Controllers.Api.ProtocolHandlers;
using Novaria.GameServer.Controllers.Api.ProtocolHandlers;
using Novaria.Common.Util;
namespace Novaria.SDKServer.Controllers.Api
namespace Novaria.GameServer.Controllers.Api
{
[Route("/agent-zone-1")]
public class GatewayController : ControllerBase

View File

@@ -4,7 +4,7 @@ using Proto;
using Serilog;
using System.Text.Json;
namespace Novaria.SDKServer.Controllers.Api.ProtocolHandlers
namespace Novaria.GameServer.Controllers.Api.ProtocolHandlers
{
public class Login : ProtocolHandlerBase
{

View File

@@ -4,7 +4,7 @@ using Proto;
using Serilog;
using System.Reflection;
namespace Novaria.SDKServer.Controllers.Api.ProtocolHandlers
namespace Novaria.GameServer.Controllers.Api.ProtocolHandlers
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
internal class ProtocolHandlerAttribute : Attribute