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

OpenGL

开发平台:

Visual C++

  1. // celx_observer.h
  2. //
  3. // Copyright (C) 2003-2008, the Celestia Development Team
  4. //
  5. // Lua script extensions for Celestia: observer object
  6. //
  7. // This program is free software; you can redistribute it and/or
  8. // modify it under the terms of the GNU General Public License
  9. // as published by the Free Software Foundation; either version 2
  10. // of the License, or (at your option) any later version.
  11. #ifndef _CELX_OBSERVER_H_
  12. #define _CELX_OBSERVER_H_
  13. struct lua_State;
  14. class Observer;
  15. extern void CreateObserverMetaTable(lua_State* l);
  16. extern int observer_new(lua_State* l, Observer* obs);
  17. #endif // _CELX_OBSERVER_H_