aka RedditBar, Mac OS X menu bar reddit client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.m 376B

123456789101112131415161718
  1. //
  2. // main.m
  3. // BaconBarHelper
  4. //
  5. // Created by Thomas Buck on 28.12.13.
  6. // Copyright (c) 2013 xythobuz. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import "AppDelegate.h"
  10. int main(int argc, const char * argv[])
  11. {
  12. AppDelegate *delegate = [[AppDelegate alloc] init];
  13. [[NSApplication sharedApplication] setDelegate:delegate];
  14. [NSApp run];
  15. return 0;
  16. }