Files
Libation/Source/_Demos/LoadByOS/LinuxConfigApp/Program.cs
Michael Bucari-Tovo 3ab1edc076 Code Cleanup
Make fields readonly
Remove unnecessary casts
Format document
Remove unnecessary usings
Sort usings
Use file-level namespaces
Order modifiers
2026-02-05 12:48:44 -07:00

11 lines
207 B
C#

using CrossPlatformClientExe;
namespace LinuxConfigApp;
class Program : OSConfigBase
{
public override Type InteropFunctionsType => typeof(LinuxInterop);
static void Main() => new Program().Run();
}