PolycodeCocoaPlayer.h 549 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * CocoaPolycodePlayer.h
  3. * PolycodePlayer
  4. *
  5. * Created by Ivan Safrin on 12/5/09.
  6. * Copyright 2009 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. #pragma once
  10. #import "PolySubstanceView.h"
  11. #include "PolycodePlayer.h"
  12. #import <Cocoa/Cocoa.h>
  13. #include "PolyCocoaCore.h"
  14. class CocoaPolycodePlayer : public PolycodePlayer {
  15. public:
  16. CocoaPolycodePlayer(SubstanceView *view,String fileName, bool knownArchive);
  17. virtual ~CocoaPolycodePlayer();
  18. void createCore();
  19. NSWindow *playbackWindow;
  20. protected:
  21. SubstanceView *view;
  22. };