mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
18 lines
569 B
C#
18 lines
569 B
C#
using CommandLine;
|
|
|
|
namespace Robust.Client
|
|
{
|
|
internal sealed class CommandLineArgs
|
|
{
|
|
[Option("headless", Required = false, HelpText = "Run without graphics/audio.")]
|
|
public bool Headless { get; set; }
|
|
|
|
[Option("self-contained", Required = false,
|
|
HelpText = "Store data relative to executable instead of user-global locations.")]
|
|
public bool SelfContained { get; set; }
|
|
|
|
[Option("connect", Required = false, HelpText = "Automatically connect to localhost.")]
|
|
public bool Connect { get; set; }
|
|
}
|
|
}
|