Files
BLHX.Server/BLHX.Server.Game/InputSystem.cs
2024-02-18 01:42:56 -05:00

19 lines
342 B
C#

using BLHX.Server.Game.Commands;
namespace BLHX.Server.Game;
public static class InputSystem
{
public static void Start()
{
while (true)
{
var command = Console.ReadLine();
if (string.IsNullOrEmpty(command)) continue;
CommandHandler.HandleCommand(command);
}
}
}