NBloodServerSupervisor/Common/CommandLineUtils.cs

13 lines
314 B
C#
Raw Normal View History

2020-01-27 17:25:45 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public static class CommandLineUtils
{
public static string GetClientLaunchCommand(string host, int port, string modCommandLine) =>
$"nblood -client {host} -port {port} {modCommandLine}";
}
}