mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-25 06:58:06 -05:00
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();
|
|
}
|
|
}
|