17 lines
404 B
C#
17 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KssSmaPlaLib.Commons
|
|
{
|
|
public static class VariableUxer
|
|
{
|
|
private static List<string> _args = new List<string>();
|
|
|
|
public static List<string> Args { get => _args; }
|
|
public static void SetArgs(string[] args) { _args = args.ToList(); }
|
|
}
|
|
}
|