sendchat and packet handler options

This commit is contained in:
rfi
2024-02-21 23:33:11 +07:00
parent c3bcb16f72
commit 9b6673138e
6 changed files with 79 additions and 11 deletions

View File

@@ -2,6 +2,7 @@
using System.Net.Sockets;
using BLHX.Server.Common.Data;
using BLHX.Server.Common.Utils;
using BLHX.Server.Game.Managers;
namespace BLHX.Server.Game
{
@@ -11,6 +12,7 @@ namespace BLHX.Server.Game
public static readonly Dictionary<IPEndPoint, Connection> connections = new();
public static readonly Logger c = new(nameof(GameServer), ConsoleColor.Magenta);
public static IPEndPoint EndPoint { get; }
public static ChatManager ChatManager { get; } = new ChatManager();
static GameServer()
{