aboutsummaryrefslogtreecommitdiff
path: root/lib/lua/src/loadlib.c
diff options
context:
space:
mode:
authorupdatepo.sh <script@mt>2021-01-30 21:13:51 +0100
committersfan5 <sfan5@live.de>2021-01-30 21:13:51 +0100
commitd1ec5117d9095c75aca26a98690e4fcc5385e98c (patch)
tree29766e8c2c943fb7c42794a7dca14b9e484cabec /lib/lua/src/loadlib.c
parentcb807b26e27f8a235df805f901311711deae5de1 (diff)
downloadminetest-d1ec5117d9095c75aca26a98690e4fcc5385e98c.tar.gz
minetest-d1ec5117d9095c75aca26a98690e4fcc5385e98c.tar.bz2
minetest-d1ec5117d9095c75aca26a98690e4fcc5385e98c.zip
Update translation files
pan class="hl com">(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. */ #include "test.h" #include "gamedef.h" #include "voxelalgorithms.h" #include "util/numeric.h" class TestVoxelAlgorithms : public TestBase { public: TestVoxelAlgorithms() { TestManager::registerTestModule(this); } const char *getName() { return "TestVoxelAlgorithms"; } void runTests(IGameDef *gamedef); void testVoxelLineIterator(const NodeDefManager *ndef); }; static TestVoxelAlgorithms g_test_instance; void TestVoxelAlgorithms::runTests(IGameDef *gamedef) { const NodeDefManager *ndef = gamedef->getNodeDefManager(); TEST(testVoxelLineIterator, ndef); }