pacserver/Program.cs

16 lines
428 B
C#
Raw Normal View History

2023-05-27 18:32:46 +02:00
public class Program {
static void Main(string[] args) {
if (args.Length == 0) {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Please specify an option.");
Console.ResetColor();
} else {
switch(args[0]) {
case "":
break;
default:
break;
}
}
}
}