Added missing documentation

This commit is contained in:
Alexander Bock
2014-09-14 17:40:19 +02:00
parent f0dfd0fa04
commit 3d62caae46
2 changed files with 6 additions and 5 deletions

View File

@@ -140,10 +140,11 @@ public:
/**
* Returns the Lua library that contains all Lua functions available to change the
* current time, retrieve the current time etc. The functions contained are
* - time_setDeltaTime
* - time_deltaTime
* - time_currentTime
* - time_currentTimeUTC
* - openspace::luascriptfunctions::time_setDeltaTime
* - openspace::luascriptfunctions::time_deltaTime
* - openspace::luascriptfunctions::time_setTime
* - openspace::luascriptfunctions::time_currentTime
* - openspace::luascriptfunctions::time_currentTimeUTC
* \return The Lua library that contains all Lua functions available to change the
* Time singleton
*/

View File

@@ -139,7 +139,7 @@ int time_currentTimeUTC(lua_State* L) {
return 1;
}
} // namespace luascripts
} // namespace luascriptfunctions
Time* Time::_instance = nullptr;