mirror of
https://github.com/scratchfoundation/scratch-link.git
synced 2025-07-27 22:48:44 -04:00
25 lines
446 B
C#
25 lines
446 B
C#
|
using AppKit;
|
|||
|
using Foundation;
|
|||
|
|
|||
|
namespace scratchlinkmac
|
|||
|
{
|
|||
|
[Register ("AppDelegate")]
|
|||
|
public class AppDelegate : NSApplicationDelegate
|
|||
|
{
|
|||
|
public AppDelegate ()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public override void DidFinishLaunching (NSNotification notification)
|
|||
|
{
|
|||
|
// Insert code here to initialize your application
|
|||
|
}
|
|||
|
|
|||
|
public override void WillTerminate (NSNotification notification)
|
|||
|
{
|
|||
|
// Insert code here to tear down your application
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|