CelestiaDSO.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:0k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //
  2. //  CelestiaDSO.h
  3. //  celestia
  4. //
  5. //  Created by Da Woon Jung on 12/30/06.
  6. //  Copyright 2006 Chris Laurel. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #include "deepskyobj.h"
  10. @interface CelestiaDSO : NSObject
  11. {
  12.     NSValue *_data;
  13. }
  14. -(id)initWithDSO:(DeepSkyObject*)aDSO;
  15. -(DeepSkyObject*)DSO;
  16. -(NSString *)name;
  17. -(NSString*)type;
  18. @end