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