mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-15 16:41:13 -05:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
11 lines
207 B
C#
11 lines
207 B
C#
using CrossPlatformClientExe;
|
|
|
|
namespace LinuxConfigApp;
|
|
|
|
class Program : OSConfigBase
|
|
{
|
|
public override Type InteropFunctionsType => typeof(LinuxInterop);
|
|
|
|
static void Main() => new Program().Run();
|
|
}
|