aboutsummaryrefslogtreecommitdiff
path: root/advtrains/locale/de.txt
diff options
context:
space:
mode:
Diffstat (limited to 'advtrains/locale/de.txt')
0 files changed, 0 insertions, 0 deletions
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 ModApiRollback : public ModApiBase { private: // rollback_get_node_actions(pos, range, seconds) -> {{actor, pos, time, oldnode, newnode}, ...} static int l_rollback_get_node_actions(lua_State *L); // rollback_revert_actions_by(actor, seconds) -> bool, log messages static int l_rollback_revert_actions_by(lua_State *L); public: static void Initialize(lua_State *L, int top); };