mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 11:12:47 +01:00
13 lines
314 B
C#
13 lines
314 B
C#
|
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}";
|
|||
|
}
|
|||
|
}
|