12 lines
237 B
C#
12 lines
237 B
C#
using AppScaffolding.OSInterop;
|
|
|
|
namespace MacOSConfigApp
|
|
{
|
|
class Program : OSConfigBase
|
|
{
|
|
public override Type InteropFunctionsType => typeof(MacOSInterop);
|
|
|
|
static void Main() => new Program().Run();
|
|
}
|
|
}
|