12 lines
235 B
C#
12 lines
235 B
C#
using CrossPlatformClientExe;
|
|
|
|
namespace LinuxConfigApp
|
|
{
|
|
class Program : OSConfigBase
|
|
{
|
|
public override Type InteropFunctionsType => typeof(LinuxInterop);
|
|
|
|
static void Main() => new Program().Run();
|
|
}
|
|
}
|