aboutsummaryrefslogtreecommitdiff
path: root/src/sqlite/CMakeLists.txt
diff options
context:
space:
mode:
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>2013-06-30 18:17:14 +0300
committersapier <Sapier at GMX dot net>2013-12-15 14:28:50 +0100
commit848f80b2e53155c76f598c2f7e0ebaff1faea8dc (patch)
tree80a82ec413866bd73bca1f0cefa93b065d60a9f2 /src/sqlite/CMakeLists.txt
parente9e9fd7c3f12bc5119b567ad37527d777859dbc0 (diff)
downloadminetest-848f80b2e53155c76f598c2f7e0ebaff1faea8dc.tar.gz
minetest-848f80b2e53155c76f598c2f7e0ebaff1faea8dc.tar.bz2
minetest-848f80b2e53155c76f598c2f7e0ebaff1faea8dc.zip
Directional fog + horizon colors, based on sun & moon positions at sunrise / sunset
Diffstat (limited to 'src/sqlite/CMakeLists.txt')
0 files changed, 0 insertions, 0 deletions
or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "lua_api/l_base.h" class ModApiServer : public ModApiBase { private: // request_shutdown([message], [reconnect]) static int l_request_shutdown(lua_State *L); // get_server_status() static int l_get_server_status(lua_State *L); // get_server_uptime() static int l_get_server_uptime(lua_State *L); // get_worldpath() static int l_get_worldpath(lua_State *L); // is_singleplayer() static int l_is_singleplayer(lua_State *L); // get_current_modname() static int l_get_current_modname(lua_State *L); // get_modpath(modname) static int l_get_modpath(lua_State *L); // get_modnames() // the returned list is sorted alphabetically for you static int l_get_modnames(lua_State *L); // print(text) static int l_print(lua_State *L); // chat_send_all(text) static int l_chat_send_all(lua_State *L); // chat_send_player(name, text)