CelestiaLocation.h
Upload User: center1979
Upload Date: 2022-07-26
Package Size: 50633k
Code Size: 0k
Category:

OpenGL program

Development Platform:

Visual C++

  1. //
  2. //  CelestiaLocation.h
  3. //  celestia
  4. //
  5. //  Created by Da Woon Jung on 12/31/06.
  6. //  Copyright 2006 Chris Laurel. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #include "location.h"
  10. @interface CelestiaLocation : NSObject
  11. {
  12.     NSValue *_data;
  13. }
  14. -(id)initWithLocation:(Location*)aLocation;
  15. -(Location*)location;
  16. -(NSString*)name;
  17. @end