aboutsummaryrefslogtreecommitdiff
path: root/po/ky
diff options
context:
space:
mode:
authorNicolae Crefelean <kneekoo@yahoo.com>2021-06-17 21:21:20 +0000
committersfan5 <sfan5@live.de>2021-11-27 19:33:52 +0100
commit5f79e9552d5a8b2f1b75048891dae37f4d4b30aa (patch)
treec594644d35703ca067fcb2a8abc44d2f25e5b47f /po/ky
parent891290a79f56bdb9de1ce0e96844893039699ce8 (diff)
downloadminetest-5f79e9552d5a8b2f1b75048891dae37f4d4b30aa.tar.gz
minetest-5f79e9552d5a8b2f1b75048891dae37f4d4b30aa.tar.bz2
minetest-5f79e9552d5a8b2f1b75048891dae37f4d4b30aa.zip
Translated using Weblate (Romanian)
Currently translated at 47.6% (665 of 1396 strings)
Diffstat (limited to 'po/ky')
0 files changed, 0 insertions, 0 deletions
fy 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. */ #ifndef S_BASE_H_ #define S_BASE_H_ #include <iostream> #include <string> extern "C" { #include <lua.h> } #include "irrlichttypes.h" #include "jthread/jmutex.h" #include "jthread/jmutexautolock.h" #include "common/c_types.h" #include "common/c_internal.h" #define SCRIPTAPI_LOCK_DEBUG class Server; class Environment; class GUIEngine; class ServerActiveObject; class ScriptApiBase { public: ScriptApiBase(); virtual ~ScriptApiBase(); bool loadMod(const std::string &scriptpath, const std::string &modname); bool loadScript(const std::string &scriptpath); /* object */ void addObjectReference(ServerActiveObject *cobj); void removeObjectReference(ServerActiveObject *cobj); protected: friend class LuaABM; friend class InvRef; friend class ObjectRef; friend class NodeMetaRef; friend class ModApiBase; friend class ModApiEnvMod; friend class LuaVoxelManip; lua_State* getStack() { return m_luastack; } void realityCheck(); void scriptError(); void stackDump(std::ostream &o);