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

OpenGL

开发平台:

Visual C++

  1. //
  2. //  CelestiaOpenGLView.h
  3. //  celestia
  4. //
  5. //  Created by Bob Ippolito on Tue May 28 2002.
  6. //  Copyright (c) 2002 Chris Laurel. All rights reserved.
  7. //
  8. #import "CelestiaController.h"
  9. @class MacInputWatcher;
  10. @class TextWindowController;
  11. @interface CelestiaOpenGLView : NSOpenGLView
  12. {
  13.     IBOutlet CelestiaController *controller;
  14.     MacInputWatcher *inputWatcher;
  15.     TextWindowController *textWindow;
  16. }
  17. - (void)setAASamples: (unsigned int)aaSamples;
  18. @end