From 882d52f5f6ec92ec3b70a7bf2e825e9074c9f2dc Mon Sep 17 00:00:00 2001 From: Kurtzmusch Date: Fri, 19 Apr 2019 13:35:11 -0300 Subject: [PATCH] added license to generate_ files --- generate_map.lua | 13 +++++++++++++ generate_nodeboxes.lua | 13 +++++++++++++ generate_shapes.lua | 13 +++++++++++++ 3 files changed, 39 insertions(+) diff --git a/generate_map.lua b/generate_map.lua index 44e03cc..78d9719 100644 --- a/generate_map.lua +++ b/generate_map.lua @@ -1,3 +1,16 @@ +--[[ + +k-smallblocks is a Minetest mod that adds smaller blocks to minetest aswell as its own node placement prediction/system +Copyright (C) 2019 Kurtzmusch + +This library is free software; you can redistribute it and/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 library 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 library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +--]] + for key_int, val_bitmap_as_int in pairs( smallblocks.origin_bitmaps ) do local bitmap_as_int = val_bitmap_as_int diff --git a/generate_nodeboxes.lua b/generate_nodeboxes.lua index 217adfa..6aaaad4 100644 --- a/generate_nodeboxes.lua +++ b/generate_nodeboxes.lua @@ -1,3 +1,16 @@ +--[[ + +k-smallblocks is a Minetest mod that adds smaller blocks to minetest aswell as its own node placement prediction/system +Copyright (C) 2019 Kurtzmusch + +This library is free software; you can redistribute it and/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 library 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 library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +--]] + nodeboxes = {} diff --git a/generate_shapes.lua b/generate_shapes.lua index 05f308b..235113a 100644 --- a/generate_shapes.lua +++ b/generate_shapes.lua @@ -1,3 +1,16 @@ +--[[ + +k-smallblocks is a Minetest mod that adds smaller blocks to minetest aswell as its own node placement prediction/system +Copyright (C) 2019 Kurtzmusch + +This library is free software; you can redistribute it and/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 library 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 library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +--]] + origin_bitmaps = { [255] = nil } smallblocks.origin_bitmaps = origin_bitmaps