StandalonePlayerAppDelegate.h 521 B

123456789101112131415161718192021222324
  1. //
  2. // StandalonePlayerAppDelegate.h
  3. // StandalonePlayer
  4. //
  5. // Created by Ivan Safrin on 5/25/11.
  6. // Copyright 2011 Tomatogon. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import "PolycodeView.h"
  10. #include "PolycodeCocoaPlayer.h"
  11. @interface StandalonePlayerAppDelegate : NSObject <NSApplicationDelegate> {
  12. @private
  13. NSWindow *window;
  14. PolycodeView *mainView;
  15. CocoaPolycodePlayer *player;
  16. NSTimer *timer;
  17. }
  18. @property (assign) IBOutlet NSWindow *window;
  19. @property (assign) IBOutlet PolycodeView *mainView;
  20. @end