aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mac/AppController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Mac/AppController.cs')
-rw-r--r--MediaBrowser.Server.Mac/AppController.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Mac/AppController.cs b/MediaBrowser.Server.Mac/AppController.cs
new file mode 100644
index 000000000..8d690b813
--- /dev/null
+++ b/MediaBrowser.Server.Mac/AppController.cs
@@ -0,0 +1,21 @@
+using MediaBrowser.Controller;
+using MediaBrowser.Controller.Configuration;
+using MediaBrowser.Controller.Localization;
+using MediaBrowser.Model.Logging;
+using MediaBrowser.Server.Startup.Common.Browser;
+using System;
+using MonoMac.Foundation;
+using MonoMac.AppKit;
+
+namespace MediaBrowser.Server.Mac
+{
+ [Register("AppController")]
+ public partial class AppController : NSObject
+ {
+ public override void AwakeFromNib()
+ {
+ //new MenuBarIcon ().ShowIcon ();
+ }
+ }
+}
+