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

OpenGL program

Development Platform:

Visual C++

  1. // celx_phase.h
  2. //
  3. // Copyright (C) 2003-2008, the Celestia Development Team
  4. //
  5. // Lua script extensions for Celestia: phase 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_PHASE_H_
  12. #define _CELX_PHASE_H_
  13. struct lua_State;
  14. class TimelinePhase;
  15. extern void CreatePhaseMetaTable(lua_State* l);
  16. extern int phase_new(lua_State* l, const TimelinePhase& phase);
  17. #endif // _CELX_PHASE_H_