Chromium Updater
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.

18 lines
415 B

13 years ago
  1. //
  2. // MGMAbout.h
  3. // MGMUsers
  4. //
  5. // Created by Mr. Gecko on 1/29/11.
  6. // Copyright (c) 2011 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface MGMAbout : NSObject {
  10. IBOutlet NSWindow *window;
  11. IBOutlet NSImageView *iconView;
  12. IBOutlet NSTextField *applicationField;
  13. IBOutlet NSTextView *aboutView;
  14. }
  15. - (NSWindow *)window;
  16. - (void)show;
  17. @end