├── .clang-tidy ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md └── workflows │ ├── android.yml │ ├── cpp_lint.yml │ ├── linux.yml │ ├── lua.yml │ └── windows.yml ├── .gitignore ├── .gitlab-ci.yml ├── .luacheckrc ├── .mailmap ├── .vscode └── extensions.json ├── CMakeLists.txt ├── CMakePresets.json ├── COPYING.LESSER ├── Dockerfile ├── LICENSE.txt ├── README.md ├── android ├── .gitignore ├── SDL_Java_RMB_fix.patch ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── net │ │ │ └── minetest │ │ │ │ └── minetest │ │ │ │ ├── CustomEditText.java │ │ │ │ ├── GameActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── UnzipService.java │ │ │ │ └── Utils.java │ │ └── org │ │ │ └── libsdl │ │ │ └── app │ │ │ ├── HIDDevice.java │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ ├── HIDDeviceManager.java │ │ │ ├── HIDDeviceUSB.java │ │ │ ├── SDL.java │ │ │ ├── SDLActivity.java │ │ │ ├── SDLAudioManager.java │ │ │ ├── SDLControllerManager.java │ │ │ └── SDLSurface.java │ │ └── res │ │ ├── drawable │ │ ├── background.png │ │ └── bg.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap │ │ └── ic_launcher.png │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-ms │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── filepaths.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── icons │ ├── aux1_btn.svg │ ├── camera_btn.svg │ ├── chat_btn.svg │ ├── chat_hide_btn.svg │ ├── chat_show_btn.svg │ ├── checkbox_tick.svg │ ├── debug_btn.svg │ ├── down.svg │ ├── drop_btn.svg │ ├── exit_btn.svg │ ├── fast_btn.svg │ ├── fly_btn.svg │ ├── inventory_btn.svg │ ├── joystick_bg.svg │ ├── joystick_center.svg │ ├── joystick_off.svg │ ├── jump_btn.svg │ ├── minimap_btn.svg │ ├── noclip_btn.svg │ ├── overflow_btn.svg │ ├── rangeview_btn.svg │ └── zoom.svg ├── keystore-minetest.jks ├── native │ ├── build.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml └── settings.gradle ├── builtin ├── async │ ├── game.lua │ └── mainmenu.lua ├── client │ ├── chatcommands.lua │ ├── init.lua │ ├── misc.lua │ └── register.lua ├── common │ ├── after.lua │ ├── chatcommands.lua │ ├── filterlist.lua │ ├── information_formspecs.lua │ ├── item_s.lua │ ├── math.lua │ ├── metatable.lua │ ├── misc_helpers.lua │ ├── mod_storage.lua │ ├── register.lua │ ├── serialize.lua │ ├── strict.lua │ ├── tests │ │ ├── after_spec.lua │ │ ├── math_spec.lua │ │ ├── misc_helpers_spec.lua │ │ ├── serialize_spec.lua │ │ └── vector_spec.lua │ └── vector.lua ├── emerge │ ├── env.lua │ ├── init.lua │ └── register.lua ├── fstk │ ├── buttonbar.lua │ ├── dialog.lua │ ├── tabview.lua │ └── ui.lua ├── game │ ├── async.lua │ ├── auth.lua │ ├── chat.lua │ ├── constants.lua │ ├── death_screen.lua │ ├── deprecated.lua │ ├── detached_inventory.lua │ ├── falling.lua │ ├── features.lua │ ├── forceloading.lua │ ├── hud.lua │ ├── init.lua │ ├── item.lua │ ├── item_entity.lua │ ├── knockback.lua │ ├── misc.lua │ ├── misc_s.lua │ ├── privileges.lua │ ├── register.lua │ ├── static_spawn.lua │ ├── tests │ │ └── test_moveaction.lua │ └── voxelarea.lua ├── init.lua ├── locale │ ├── __builtin.be.tr │ ├── __builtin.bg.tr │ ├── __builtin.ca.tr │ ├── __builtin.cs.tr │ ├── __builtin.cy.tr │ ├── __builtin.da.tr │ ├── __builtin.de.tr │ ├── __builtin.el.tr │ ├── __builtin.eo.tr │ ├── __builtin.es.tr │ ├── __builtin.et.tr │ ├── __builtin.eu.tr │ ├── __builtin.fi.tr │ ├── __builtin.fil.tr │ ├── __builtin.fr.tr │ ├── __builtin.ga.tr │ ├── __builtin.gl.tr │ ├── __builtin.hu.tr │ ├── __builtin.id.tr │ ├── __builtin.it.tr │ ├── __builtin.ja.tr │ ├── __builtin.jbo.tr │ ├── __builtin.jv.tr │ ├── __builtin.ko.tr │ ├── __builtin.kv.tr │ ├── __builtin.ky.tr │ ├── __builtin.lt.tr │ ├── __builtin.lv.tr │ ├── __builtin.lzh.tr │ ├── __builtin.mn.tr │ ├── __builtin.mr.tr │ ├── __builtin.ms.tr │ ├── __builtin.nb.tr │ ├── __builtin.nl.tr │ ├── __builtin.nn.tr │ ├── __builtin.oc.tr │ ├── __builtin.pl.tr │ ├── __builtin.pt.tr │ ├── __builtin.pt_BR.tr │ ├── __builtin.ro.tr │ ├── __builtin.ru.tr │ ├── __builtin.sk.tr │ ├── __builtin.sl.tr │ ├── __builtin.sr_Cyrl.tr │ ├── __builtin.sr_Latn.tr │ ├── __builtin.sv.tr │ ├── __builtin.sw.tr │ ├── __builtin.tok.tr │ ├── __builtin.tr.tr │ ├── __builtin.tt.tr │ ├── __builtin.uk.tr │ ├── __builtin.vi.tr │ ├── __builtin.zh_CN.tr │ ├── __builtin.zh_TW.tr │ └── template.txt ├── mainmenu │ ├── async_event.lua │ ├── common.lua │ ├── content │ │ ├── contentdb.lua │ │ ├── dlg_contentdb.lua │ │ ├── dlg_contentstore.lua │ │ ├── dlg_install.lua │ │ ├── dlg_overwrite.lua │ │ ├── dlg_package.lua │ │ ├── init.lua │ │ ├── pkgmgr.lua │ │ ├── screenshots.lua │ │ ├── tests │ │ │ └── pkgmgr_spec.lua │ │ └── update_detector.lua │ ├── credits.json │ ├── dlg_config_server.lua │ ├── dlg_config_world.lua │ ├── dlg_create_world.lua │ ├── dlg_delete_content.lua │ ├── dlg_delete_world.lua │ ├── dlg_register.lua │ ├── dlg_reinstall_mtg.lua │ ├── dlg_version_info.lua │ ├── game_theme.lua │ ├── init.lua │ ├── serverlistmgr.lua │ ├── settings │ │ ├── components.lua │ │ ├── dlg_change_mapgen_flags.lua │ │ ├── dlg_file_browser.lua │ │ ├── dlg_settings.lua │ │ ├── generate_from_settingtypes.lua │ │ ├── init.lua │ │ ├── settingtypes.lua │ │ ├── shader_warning_component.lua │ │ └── shadows_component.lua │ ├── tab_about.lua │ ├── tab_content.lua │ ├── tab_local.lua │ ├── tab_online.lua │ └── tests │ │ ├── favorites_wellformed.txt │ │ └── serverlistmgr_spec.lua ├── profiler │ ├── init.lua │ ├── instrumentation.lua │ ├── reporter.lua │ └── sampling.lua └── settingtypes.txt ├── client ├── serverlist │ └── .gitignore └── shaders │ ├── 3d_interlaced_merge │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── Irrlicht │ ├── OneTextureBlend.fsh │ ├── Renderer2D.fsh │ ├── Renderer2D.vsh │ ├── Renderer2D_noTex.fsh │ ├── Solid.fsh │ ├── Solid.vsh │ ├── TransparentAlphaChannel.fsh │ ├── TransparentAlphaChannelRef.fsh │ └── TransparentVertexAlpha.fsh │ ├── bloom_downsample │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── bloom_upsample │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── blur_h │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── blur_v │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── cloud_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── default_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── extract_bloom │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── fxaa │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── minimap_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── nodes_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── object_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── second_stage │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── selection_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── shadow_shaders │ ├── pass1_fragment.glsl │ ├── pass1_trans_fragment.glsl │ ├── pass1_trans_vertex.glsl │ ├── pass1_vertex.glsl │ ├── pass2_fragment.glsl │ └── pass2_vertex.glsl │ ├── stars_shader │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ ├── update_exposure │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl │ └── volumetric_light │ ├── opengl_fragment.glsl │ └── opengl_vertex.glsl ├── clientmods └── preview │ ├── example.lua │ ├── examples │ └── first.lua │ ├── init.lua │ ├── mod.conf │ └── settingtypes.txt ├── cmake └── Modules │ ├── AndroidLibs.cmake │ ├── FindCURL.cmake │ ├── FindGMP.cmake │ ├── FindGettextLib.cmake │ ├── FindJson.cmake │ ├── FindLua.cmake │ ├── FindLuaJIT.cmake │ ├── FindNcursesw.cmake │ ├── FindSQLite3.cmake │ ├── FindVorbis.cmake │ ├── FindZstd.cmake │ └── GenerateVersion.cmake ├── doc ├── Doxyfile.in ├── android.md ├── breakages.md ├── builtin_entities.md ├── client_lua_api.md ├── compiling │ ├── README.md │ ├── linux.md │ ├── macos.md │ └── windows.md ├── developing │ ├── README.md │ ├── android.md │ ├── docker.md │ ├── misc.md │ └── os-compatibility.md ├── direction.md ├── docker_server.md ├── fst_api.txt ├── ides │ ├── images │ │ ├── jetbrains_cmake_profiles.png │ │ ├── jetbrains_ide.png │ │ ├── jetbrains_notification_profiles.png │ │ ├── jetbrains_open_project_wizard_profiles.png │ │ ├── jetbrains_open_project_wizard_windows_cmake.png │ │ ├── jetbrains_open_project_wizard_windows_compiler.png │ │ ├── jetbrains_vcpkg.png │ │ ├── vscode_cmake_preset_selection.png │ │ └── vscode_toolbar.png │ ├── jetbrains.md │ ├── visual_studio.md │ └── vscode.md ├── lgpl-2.1.txt ├── lua_api.md ├── lua_api.txt ├── luanti.6 ├── luantiserver.6 ├── main_page.dox ├── menu_lua_api.md ├── mkdocs │ ├── build.sh │ ├── docs │ │ ├── css │ │ │ ├── code_styles.css │ │ │ └── extra.css │ │ └── img │ │ │ └── favicon.ico │ └── requirements.txt ├── mod_channels.png ├── protocol.txt ├── texture_packs.md └── world_format.md ├── fonts ├── Archivo-Bold.ttf ├── Archivo-BoldItalic.ttf ├── Archivo-Italic.ttf ├── Archivo-LICENSE.txt ├── Archivo-Regular.ttf ├── Cousine-Bold.ttf ├── Cousine-BoldItalic.ttf ├── Cousine-Italic.ttf ├── Cousine-LICENSE.txt ├── Cousine-Regular.ttf ├── DroidSansFallbackFull-LICENSE.txt └── DroidSansFallbackFull.ttf ├── games └── devtest │ ├── .luacheckrc │ ├── LICENSE.txt │ ├── README.md │ ├── game.conf │ ├── menu │ ├── background.png │ ├── header.png │ └── icon.png │ ├── mods │ ├── basenodes │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── basenodes_dirt_with_grass_bottom.png │ │ │ ├── basenodes_dirt_with_snow.png │ │ │ ├── basenodes_dirt_with_snow_bottom.png │ │ │ ├── basenodes_snow_sheet.png │ │ │ ├── default_apple.png │ │ │ ├── default_cobble.png │ │ │ ├── default_desert_sand.png │ │ │ ├── default_desert_stone.png │ │ │ ├── default_dirt.png │ │ │ ├── default_grass.png │ │ │ ├── default_gravel.png │ │ │ ├── default_ice.png │ │ │ ├── default_junglegrass.png │ │ │ ├── default_jungleleaves.png │ │ │ ├── default_jungletree.png │ │ │ ├── default_jungletree_top.png │ │ │ ├── default_lava.png │ │ │ ├── default_lava_flowing.png │ │ │ ├── default_leaves.png │ │ │ ├── default_mossycobble.png │ │ │ ├── default_pine_needles.png │ │ │ ├── default_pine_tree.png │ │ │ ├── default_pine_tree_top.png │ │ │ ├── default_river_water.png │ │ │ ├── default_river_water_flowing.png │ │ │ ├── default_sand.png │ │ │ ├── default_snow.png │ │ │ ├── default_snow_side.png │ │ │ ├── default_stone.png │ │ │ ├── default_tree.png │ │ │ ├── default_tree_top.png │ │ │ ├── default_water.png │ │ │ ├── default_water_flowing.png │ │ │ ├── dirt_with_grass │ │ │ ├── default_grass.png │ │ │ └── default_grass_side.png │ │ │ └── info.txt │ ├── basetools │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── basetools_bloodsword.png │ │ │ ├── basetools_elementalsword.png │ │ │ ├── basetools_firesword.png │ │ │ ├── basetools_healdagger.png │ │ │ ├── basetools_healsword.png │ │ │ ├── basetools_icesword.png │ │ │ ├── basetools_mesepick.png │ │ │ ├── basetools_mesepick_no_delay.png │ │ │ ├── basetools_mesesword.png │ │ │ ├── basetools_steelaxe.png │ │ │ ├── basetools_steeldagger.png │ │ │ ├── basetools_steelpick.png │ │ │ ├── basetools_steelpick_l1.png │ │ │ ├── basetools_steelpick_l2.png │ │ │ ├── basetools_steelshears.png │ │ │ ├── basetools_steelshovel.png │ │ │ ├── basetools_steelsword.png │ │ │ ├── basetools_stoneaxe.png │ │ │ ├── basetools_stonepick.png │ │ │ ├── basetools_stoneshears.png │ │ │ ├── basetools_stoneshovel.png │ │ │ ├── basetools_stonesword.png │ │ │ ├── basetools_superhealsword.png │ │ │ ├── basetools_titaniumsword.png │ │ │ ├── basetools_usespick.png │ │ │ ├── basetools_usessword.png │ │ │ ├── basetools_woodaxe.png │ │ │ ├── basetools_wooddagger.png │ │ │ ├── basetools_woodpick.png │ │ │ ├── basetools_woodshears.png │ │ │ ├── basetools_woodshovel.png │ │ │ └── basetools_woodsword.png │ ├── benchmarks │ │ ├── init.lua │ │ └── mod.conf │ ├── broken │ │ ├── init.lua │ │ └── mod.conf │ ├── bucket │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── bucket.png │ │ │ ├── bucket_lava.png │ │ │ └── bucket_water.png │ ├── callbacks │ │ ├── entities.lua │ │ ├── init.lua │ │ ├── items.lua │ │ ├── mod.conf │ │ ├── nodes.lua │ │ ├── players.lua │ │ └── textures │ │ │ ├── callbacks_callback_entity.png │ │ │ ├── callbacks_callback_entity_step.png │ │ │ ├── callbacks_callback_item_1.png │ │ │ ├── callbacks_callback_item_2.png │ │ │ └── callbacks_callback_node.png │ ├── chest │ │ ├── chest.lua │ │ ├── detached.lua │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── chest_chest.png │ │ │ └── chest_detached_chest.png │ ├── chest_of_everything │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── chest_of_everything_bag.png │ │ │ └── chest_of_everything_chest.png │ ├── dignodes │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── dignodes_choppy.png │ │ │ ├── dignodes_cracky.png │ │ │ ├── dignodes_crumbly.png │ │ │ ├── dignodes_dig_immediate.png │ │ │ ├── dignodes_none.png │ │ │ ├── dignodes_rating1.png │ │ │ ├── dignodes_rating2.png │ │ │ └── dignodes_rating3.png │ ├── first_mod │ │ ├── init.lua │ │ └── mod.conf │ ├── give_initial_stuff │ │ ├── init.lua │ │ └── mod.conf │ ├── gltf │ │ ├── LICENSE.md │ │ ├── init.lua │ │ ├── invalid │ │ │ ├── empty.gltf │ │ │ ├── invalid_bufferview_bounds.gltf │ │ │ └── json_missing_brace.gltf │ │ ├── mod.conf │ │ ├── models │ │ │ ├── gltf_blender_cube.glb │ │ │ ├── gltf_blender_cube.gltf │ │ │ ├── gltf_blender_cube_matrix_transform.gltf │ │ │ ├── gltf_blender_cube_scaled.gltf │ │ │ ├── gltf_frog.gltf │ │ │ ├── gltf_minimal_triangle.gltf │ │ │ ├── gltf_simple_skin.gltf │ │ │ ├── gltf_simple_sparse_accessor.gltf │ │ │ ├── gltf_snow_man.gltf │ │ │ ├── gltf_spider.gltf │ │ │ ├── gltf_spider_animated.gltf │ │ │ ├── gltf_triangle_with_vertex_stride.gltf │ │ │ └── gltf_triangle_without_indices.gltf │ │ └── textures │ │ │ ├── gltf_cube.png │ │ │ ├── gltf_frog.png │ │ │ ├── gltf_snow_man.png │ │ │ └── gltf_spider.png │ ├── initial_message │ │ ├── init.lua │ │ └── mod.conf │ ├── last_mod │ │ ├── init.lua │ │ └── mod.conf │ ├── lighting │ │ ├── init.lua │ │ └── mod.conf │ ├── log │ │ ├── init.lua │ │ └── mod.conf │ ├── mapgen │ │ ├── init.lua │ │ └── mod.conf │ ├── modchannels │ │ ├── init.lua │ │ └── mod.conf │ ├── soundstuff │ │ ├── bigfoot.lua │ │ ├── init.lua │ │ ├── jukebox.lua │ │ ├── mod.conf │ │ ├── racecar.lua │ │ ├── sound_event_items.lua │ │ ├── sounds │ │ │ ├── gitignored_sounds │ │ │ │ └── custom_sounds_here.txt │ │ │ ├── soundstuff_mono.ogg │ │ │ └── soundstuff_sinus.ogg │ │ └── textures │ │ │ ├── soundstuff_bigfoot.png │ │ │ ├── soundstuff_eat.png │ │ │ ├── soundstuff_jukebox.png │ │ │ ├── soundstuff_node_blank.png │ │ │ ├── soundstuff_node_climbable.png │ │ │ ├── soundstuff_node_dig.png │ │ │ ├── soundstuff_node_dug.png │ │ │ ├── soundstuff_node_fall.png │ │ │ ├── soundstuff_node_footstep.png │ │ │ ├── soundstuff_node_place.png │ │ │ ├── soundstuff_node_place_failed.png │ │ │ ├── soundstuff_node_sound.png │ │ │ └── soundstuff_racecar.png │ ├── stairs │ │ ├── init.lua │ │ └── mod.conf │ ├── testabms │ │ ├── README.md │ │ ├── after_node.lua │ │ ├── chances.lua │ │ ├── init.lua │ │ ├── intervals.lua │ │ ├── min_max.lua │ │ ├── mod.conf │ │ ├── neighbors.lua │ │ └── textures │ │ │ ├── testabms_after_node.png │ │ │ └── testabms_wait_node.png │ ├── testentities │ │ ├── armor.lua │ │ ├── init.lua │ │ ├── mod.conf │ │ ├── models │ │ │ ├── LICENSE.txt │ │ │ ├── testentities_sam.b3d │ │ │ └── testentities_sam.png │ │ ├── observers.lua │ │ ├── pointable.lua │ │ ├── selectionbox.lua │ │ ├── textures │ │ │ ├── testentities_armorball.png │ │ │ ├── testentities_cube1.png │ │ │ ├── testentities_cube2.png │ │ │ ├── testentities_cube3.png │ │ │ ├── testentities_cube4.png │ │ │ ├── testentities_cube5.png │ │ │ ├── testentities_cube6.png │ │ │ ├── testentities_dungeon_master.png │ │ │ ├── testentities_sprite.png │ │ │ ├── testentities_upright_sprite1.png │ │ │ └── testentities_upright_sprite2.png │ │ └── visuals.lua │ ├── testfood │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── testfood_bad.png │ │ │ ├── testfood_bad2.png │ │ │ ├── testfood_good.png │ │ │ ├── testfood_good2.png │ │ │ └── testfood_replace.png │ ├── testformspec │ │ ├── LICENSE.txt │ │ ├── callbacks.lua │ │ ├── dummy_items.lua │ │ ├── formspec.lua │ │ ├── init.lua │ │ ├── mod.conf │ │ ├── models │ │ │ ├── testformspec_character.b3d │ │ │ └── testformspec_chest.obj │ │ └── textures │ │ │ ├── default_chest_front.png │ │ │ ├── default_chest_inside.png │ │ │ ├── default_chest_side.png │ │ │ ├── default_chest_top.png │ │ │ ├── testformspec_9slice.png │ │ │ ├── testformspec_animation.jpg │ │ │ ├── testformspec_animation.png │ │ │ ├── testformspec_bg.png │ │ │ ├── testformspec_bg_9slice.png │ │ │ ├── testformspec_bg_9slice_focused.png │ │ │ ├── testformspec_bg_9slice_hovered.png │ │ │ ├── testformspec_bg_9slice_pressed.png │ │ │ ├── testformspec_bg_focused.png │ │ │ ├── testformspec_bg_hovered.png │ │ │ ├── testformspec_bg_pressed.png │ │ │ ├── testformspec_button_image.png │ │ │ ├── testformspec_character.png │ │ │ ├── testformspec_hovered.png │ │ │ ├── testformspec_item.png │ │ │ ├── testformspec_node.png │ │ │ └── testformspec_pressed.png │ ├── testfullscreenfs │ │ ├── init.lua │ │ └── mod.conf │ ├── testhud │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ └── testhud_waypoint.png │ ├── testitems │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── testitems_overlay_base.png │ │ │ ├── testitems_overlay_overlay.png │ │ │ ├── testitems_overridden.png │ │ │ └── testitems_telescope_stick.png │ ├── testnodes │ │ ├── README.md │ │ ├── commands.lua │ │ ├── drawtypes.lua │ │ ├── init.lua │ │ ├── light.lua │ │ ├── liquids.lua │ │ ├── meshes.lua │ │ ├── mod.conf │ │ ├── models │ │ │ ├── testnodes_marble_glass.obj │ │ │ ├── testnodes_marble_metal.obj │ │ │ ├── testnodes_ocorner.obj │ │ │ └── testnodes_pyramid.obj │ │ ├── nodeboxes.lua │ │ ├── overlays.lua │ │ ├── param2.lua │ │ ├── performance_test_nodes.lua │ │ ├── properties.lua │ │ ├── textures.lua │ │ └── textures │ │ │ ├── testnodes_1.png │ │ │ ├── testnodes_128x128_rgb.png │ │ │ ├── testnodes_1f.png │ │ │ ├── testnodes_1fg.png │ │ │ ├── testnodes_1g.png │ │ │ ├── testnodes_1w.png │ │ │ ├── testnodes_1wg.png │ │ │ ├── testnodes_2.png │ │ │ ├── testnodes_2f.png │ │ │ ├── testnodes_2fg.png │ │ │ ├── testnodes_2g.png │ │ │ ├── testnodes_2w.png │ │ │ ├── testnodes_2wg.png │ │ │ ├── testnodes_3.png │ │ │ ├── testnodes_3f.png │ │ │ ├── testnodes_3fg.png │ │ │ ├── testnodes_3g.png │ │ │ ├── testnodes_3w.png │ │ │ ├── testnodes_3wg.png │ │ │ ├── testnodes_4.png │ │ │ ├── testnodes_4f.png │ │ │ ├── testnodes_4fg.png │ │ │ ├── testnodes_4g.png │ │ │ ├── testnodes_4w.png │ │ │ ├── testnodes_4wg.png │ │ │ ├── testnodes_5.png │ │ │ ├── testnodes_5f.png │ │ │ ├── testnodes_5fg.png │ │ │ ├── testnodes_5g.png │ │ │ ├── testnodes_5w.png │ │ │ ├── testnodes_5wg.png │ │ │ ├── testnodes_6.png │ │ │ ├── testnodes_6f.png │ │ │ ├── testnodes_6fg.png │ │ │ ├── testnodes_6g.png │ │ │ ├── testnodes_6w.png │ │ │ ├── testnodes_6wg.png │ │ │ ├── testnodes_airlike.png │ │ │ ├── testnodes_allfaces.png │ │ │ ├── testnodes_allfaces_optional.png │ │ │ ├── testnodes_alpha.png │ │ │ ├── testnodes_alpha128.png │ │ │ ├── testnodes_alpha191.png │ │ │ ├── testnodes_alpha64.png │ │ │ ├── testnodes_alpha_compositing_bottom.png │ │ │ ├── testnodes_alpha_compositing_top.png │ │ │ ├── testnodes_anim.png │ │ │ ├── testnodes_attached4_bottom.png │ │ │ ├── testnodes_attached4_side.png │ │ │ ├── testnodes_attached4_top.png │ │ │ ├── testnodes_attached_bottom.png │ │ │ ├── testnodes_attached_side.png │ │ │ ├── testnodes_attached_top.png │ │ │ ├── testnodes_attachedf_bottom.png │ │ │ ├── testnodes_attachedf_side.png │ │ │ ├── testnodes_attachedf_top.png │ │ │ ├── testnodes_attachedfr_bottom.png │ │ │ ├── testnodes_attachedfr_side.png │ │ │ ├── testnodes_attachedfr_top.png │ │ │ ├── testnodes_attachedw_bottom.png │ │ │ ├── testnodes_attachedw_side.png │ │ │ ├── testnodes_attachedw_top.png │ │ │ ├── testnodes_attachedwr_bottom.png │ │ │ ├── testnodes_attachedwr_side.png │ │ │ ├── testnodes_attachedwr_top.png │ │ │ ├── testnodes_blocking_pointable.png │ │ │ ├── testnodes_bouncy.png │ │ │ ├── testnodes_buildable_to.png │ │ │ ├── testnodes_climbable_noclimb_side.png │ │ │ ├── testnodes_climbable_noclimb_top.png │ │ │ ├── testnodes_climbable_nodescend_side.png │ │ │ ├── testnodes_climbable_nodescend_top.png │ │ │ ├── testnodes_climbable_nojump_side.png │ │ │ ├── testnodes_climbable_nojump_top.png │ │ │ ├── testnodes_climbable_resistance_side.png │ │ │ ├── testnodes_climbable_side.png │ │ │ ├── testnodes_climbable_top.png │ │ │ ├── testnodes_damage.png │ │ │ ├── testnodes_damage_neg.png │ │ │ ├── testnodes_drowning.png │ │ │ ├── testnodes_fall_damage_minus.png │ │ │ ├── testnodes_fall_damage_plus.png │ │ │ ├── testnodes_fencelike.png │ │ │ ├── testnodes_fill_positioning_reference.png │ │ │ ├── testnodes_firelike.png │ │ │ ├── testnodes_glasslike.png │ │ │ ├── testnodes_glasslike_detail.png │ │ │ ├── testnodes_glasslike_framed.png │ │ │ ├── testnodes_glasslike_framed2.png │ │ │ ├── testnodes_glasslike_framed_optional.png │ │ │ ├── testnodes_glasslikeliquid.png │ │ │ ├── testnodes_light.png │ │ │ ├── testnodes_light_1.png │ │ │ ├── testnodes_light_10.png │ │ │ ├── testnodes_light_11.png │ │ │ ├── testnodes_light_12.png │ │ │ ├── testnodes_light_13.png │ │ │ ├── testnodes_light_14.png │ │ │ ├── testnodes_light_2.png │ │ │ ├── testnodes_light_3.png │ │ │ ├── testnodes_light_4.png │ │ │ ├── testnodes_light_5.png │ │ │ ├── testnodes_light_6.png │ │ │ ├── testnodes_light_7.png │ │ │ ├── testnodes_light_8.png │ │ │ ├── testnodes_light_9.png │ │ │ ├── testnodes_line_crossing.png │ │ │ ├── testnodes_line_curved.png │ │ │ ├── testnodes_line_straight.png │ │ │ ├── testnodes_line_t_junction.png │ │ │ ├── testnodes_liquid.png │ │ │ ├── testnodes_liquidflowing.png │ │ │ ├── testnodes_liquidflowing_r0.png │ │ │ ├── testnodes_liquidflowing_r1.png │ │ │ ├── testnodes_liquidflowing_r2.png │ │ │ ├── testnodes_liquidflowing_r3.png │ │ │ ├── testnodes_liquidflowing_r4.png │ │ │ ├── testnodes_liquidflowing_r5.png │ │ │ ├── testnodes_liquidflowing_r6.png │ │ │ ├── testnodes_liquidflowing_r7.png │ │ │ ├── testnodes_liquidflowing_r8.png │ │ │ ├── testnodes_liquidsource.png │ │ │ ├── testnodes_liquidsource_r0.png │ │ │ ├── testnodes_liquidsource_r1.png │ │ │ ├── testnodes_liquidsource_r2.png │ │ │ ├── testnodes_liquidsource_r3.png │ │ │ ├── testnodes_liquidsource_r4.png │ │ │ ├── testnodes_liquidsource_r5.png │ │ │ ├── testnodes_liquidsource_r6.png │ │ │ ├── testnodes_liquidsource_r7.png │ │ │ ├── testnodes_liquidsource_r8.png │ │ │ ├── testnodes_marble_glass.png │ │ │ ├── testnodes_marble_metal.png │ │ │ ├── testnodes_marble_metal_overlay.png │ │ │ ├── testnodes_mask_WRGBKW.png │ │ │ ├── testnodes_mesh_stripes.png │ │ │ ├── testnodes_mesh_stripes10.png │ │ │ ├── testnodes_mesh_stripes2.png │ │ │ ├── testnodes_mesh_stripes3.png │ │ │ ├── testnodes_mesh_stripes4.png │ │ │ ├── testnodes_mesh_stripes5.png │ │ │ ├── testnodes_mesh_stripes6.png │ │ │ ├── testnodes_mesh_stripes7.png │ │ │ ├── testnodes_mesh_stripes8.png │ │ │ ├── testnodes_mesh_stripes9.png │ │ │ ├── testnodes_move_resistance.png │ │ │ ├── testnodes_node.png │ │ │ ├── testnodes_node_falling.png │ │ │ ├── testnodes_node_falling_1.png │ │ │ ├── testnodes_node_falling_2.png │ │ │ ├── testnodes_node_falling_3.png │ │ │ ├── testnodes_node_falling_4.png │ │ │ ├── testnodes_node_falling_5.png │ │ │ ├── testnodes_node_falling_6.png │ │ │ ├── testnodes_nodebox.png │ │ │ ├── testnodes_nojump_side.png │ │ │ ├── testnodes_nojump_top.png │ │ │ ├── testnodes_normal.png │ │ │ ├── testnodes_normal1.png │ │ │ ├── testnodes_normal2.png │ │ │ ├── testnodes_normal3.png │ │ │ ├── testnodes_normal4.png │ │ │ ├── testnodes_normal5.png │ │ │ ├── testnodes_normal6.png │ │ │ ├── testnodes_not_pointable.png │ │ │ ├── testnodes_overlay.png │ │ │ ├── testnodes_overlayable.png │ │ │ ├── testnodes_palette_4dir.png │ │ │ ├── testnodes_palette_facedir.png │ │ │ ├── testnodes_palette_full.png │ │ │ ├── testnodes_palette_metal.png │ │ │ ├── testnodes_palette_wallmounted.png │ │ │ ├── testnodes_plantlike.png │ │ │ ├── testnodes_plantlike_degrotate.png │ │ │ ├── testnodes_plantlike_leveled.png │ │ │ ├── testnodes_plantlike_meshoptions.png │ │ │ ├── testnodes_plantlike_rooted.png │ │ │ ├── testnodes_plantlike_rooted_base.png │ │ │ ├── testnodes_plantlike_rooted_base_side_degrotate.png │ │ │ ├── testnodes_plantlike_rooted_base_side_leveled.png │ │ │ ├── testnodes_plantlike_rooted_base_side_meshoptions.png │ │ │ ├── testnodes_plantlike_rooted_base_side_wallmounted.png │ │ │ ├── testnodes_plantlike_rooted_base_side_waving.png │ │ │ ├── testnodes_plantlike_rooted_degrotate.png │ │ │ ├── testnodes_plantlike_rooted_leveled.png │ │ │ ├── testnodes_plantlike_rooted_meshoptions.png │ │ │ ├── testnodes_plantlike_rooted_wallmounted.png │ │ │ ├── testnodes_plantlike_rooted_waving.png │ │ │ ├── testnodes_plantlike_wallmounted.png │ │ │ ├── testnodes_plantlike_waving.png │ │ │ ├── testnodes_pointable.png │ │ │ ├── testnodes_post_effect_color_shaded_false.png │ │ │ ├── testnodes_post_effect_color_shaded_true.png │ │ │ ├── testnodes_rail2_crossing.png │ │ │ ├── testnodes_rail2_curved.png │ │ │ ├── testnodes_rail2_straight.png │ │ │ ├── testnodes_rail2_t_junction.png │ │ │ ├── testnodes_rail_crossing.png │ │ │ ├── testnodes_rail_curved.png │ │ │ ├── testnodes_rail_straight.png │ │ │ ├── testnodes_rail_t_junction.png │ │ │ ├── testnodes_sign3d.png │ │ │ ├── testnodes_signlike.png │ │ │ ├── testnodes_slippery.png │ │ │ ├── testnodes_street_crossing.png │ │ │ ├── testnodes_street_curved.png │ │ │ ├── testnodes_street_straight.png │ │ │ ├── testnodes_street_t_junction.png │ │ │ ├── testnodes_sunlight_filter.png │ │ │ ├── testnodes_tga_type10_32bpp_bt.tga │ │ │ ├── testnodes_tga_type10_32bpp_tb.tga │ │ │ ├── testnodes_tga_type1_24bpp_bt.tga │ │ │ ├── testnodes_tga_type1_24bpp_tb.tga │ │ │ ├── testnodes_tga_type2_16bpp_bt.tga │ │ │ ├── testnodes_tga_type2_16bpp_tb.tga │ │ │ ├── testnodes_tga_type2_32bpp_bt.tga │ │ │ ├── testnodes_tga_type2_32bpp_tb.tga │ │ │ ├── testnodes_tga_type3_16bpp_bt.tga │ │ │ ├── testnodes_tga_type3_16bpp_tb.tga │ │ │ ├── testnodes_torchlike_ceiling.png │ │ │ ├── testnodes_torchlike_floor.png │ │ │ └── testnodes_torchlike_wall.png │ ├── testpathfinder │ │ ├── README.md │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── testpathfinder_testpathfinder.png │ │ │ ├── testpathfinder_waypoint.png │ │ │ ├── testpathfinder_waypoint_end.png │ │ │ └── testpathfinder_waypoint_start.png │ ├── testtools │ │ ├── README.md │ │ ├── init.lua │ │ ├── light.lua │ │ ├── mod.conf │ │ ├── node_box_visualizer.lua │ │ ├── particles.lua │ │ ├── privatizer.lua │ │ └── textures │ │ │ ├── testtools_blocked_pointing_staff.png │ │ │ ├── testtools_branding_iron.png │ │ │ ├── testtools_children_getter.png │ │ │ ├── testtools_entity_rotator.png │ │ │ ├── testtools_entity_scaler.png │ │ │ ├── testtools_entity_spawner.png │ │ │ ├── testtools_falling_node_tool.png │ │ │ ├── testtools_item_meta_editor.png │ │ │ ├── testtools_lighttool.png │ │ │ ├── testtools_node_box_visualizer.png │ │ │ ├── testtools_node_meta_editor.png │ │ │ ├── testtools_node_setter.png │ │ │ ├── testtools_object_attacher.png │ │ │ ├── testtools_object_editor.png │ │ │ ├── testtools_object_mover.png │ │ │ ├── testtools_param2tool.png │ │ │ ├── testtools_particle_sheet.png │ │ │ ├── testtools_particle_spawner.png │ │ │ ├── testtools_particle_vertical.png │ │ │ ├── testtools_privatizer.png │ │ │ ├── testtools_remover.png │ │ │ ├── testtools_ultimate_pointing_staff.png │ │ │ ├── testtools_visual_collision_box.png │ │ │ ├── testtools_visual_node_box.png │ │ │ └── testtools_visual_selection_box.png │ ├── testtranslations │ │ ├── init.lua │ │ ├── locale │ │ │ ├── testtranslations.fr.po │ │ │ ├── translation_mo.fr.mo │ │ │ ├── translation_po.fr.po │ │ │ └── translation_tr.fr.tr │ │ ├── mod.conf │ │ ├── test_locale │ │ │ ├── readme.txt │ │ │ ├── translation_mo.de.mo │ │ │ └── translation_po.de.po │ │ ├── translation_mo.de.po │ │ └── translation_mo.fr.po │ ├── tiled │ │ ├── init.lua │ │ ├── mod.conf │ │ └── textures │ │ │ ├── tiled_tiled.png │ │ │ └── tiled_tiled_node.png │ ├── unittests │ │ ├── async_env.lua │ │ ├── color.lua │ │ ├── content_ids.lua │ │ ├── crafting.lua │ │ ├── crafting_prepare.lua │ │ ├── entity.lua │ │ ├── get_version.lua │ │ ├── init.lua │ │ ├── inside_async_env.lua │ │ ├── inside_mapgen_env.lua │ │ ├── inventory.lua │ │ ├── itemdescription.lua │ │ ├── itemstack_equals.lua │ │ ├── load_time.lua │ │ ├── metadata.lua │ │ ├── misc.lua │ │ ├── mod.conf │ │ ├── on_shutdown.lua │ │ ├── player.lua │ │ ├── raycast.lua │ │ └── textures │ │ │ ├── default_dirt.png │ │ │ ├── unittests_callback.png │ │ │ ├── unittests_coal_lump.png │ │ │ ├── unittests_description_test.png │ │ │ ├── unittests_iron_lump.png │ │ │ ├── unittests_repairable_tool.png │ │ │ ├── unittests_steel_ingot.png │ │ │ ├── unittests_stick.png │ │ │ ├── unittests_torch.png │ │ │ └── unittests_unrepairable_tool.png │ └── util_commands │ │ ├── init.lua │ │ └── mod.conf │ ├── screenshot.png │ └── settingtypes.txt ├── irr ├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake │ └── FindOpenGLES2.cmake ├── include │ ├── CIndexBuffer.h │ ├── CMeshBuffer.h │ ├── CVertexBuffer.h │ ├── EAttributes.h │ ├── ECullingTypes.h │ ├── EDebugSceneTypes.h │ ├── EDeviceTypes.h │ ├── EDriverFeatures.h │ ├── EDriverTypes.h │ ├── EFocusFlags.h │ ├── EGUIAlignment.h │ ├── EGUIElementTypes.h │ ├── EHardwareBufferFlags.h │ ├── EMaterialProps.h │ ├── EMaterialTypes.h │ ├── EPrimitiveTypes.h │ ├── EReadFileType.h │ ├── ESceneNodeTypes.h │ ├── EShaderTypes.h │ ├── EVertexAttributes.h │ ├── EVideoTypes.h │ ├── IAnimatedMesh.h │ ├── IAnimatedMeshSceneNode.h │ ├── IAttributes.h │ ├── IBillboardSceneNode.h │ ├── IBoneSceneNode.h │ ├── ICameraSceneNode.h │ ├── IContextManager.h │ ├── ICursorControl.h │ ├── IDummyTransformationSceneNode.h │ ├── IEventReceiver.h │ ├── IFileArchive.h │ ├── IFileList.h │ ├── IFileSystem.h │ ├── IGPUProgrammingServices.h │ ├── IGUIButton.h │ ├── IGUICheckBox.h │ ├── IGUIComboBox.h │ ├── IGUIEditBox.h │ ├── IGUIElement.h │ ├── IGUIEnvironment.h │ ├── IGUIFileOpenDialog.h │ ├── IGUIFont.h │ ├── IGUIFontBitmap.h │ ├── IGUIImage.h │ ├── IGUIImageList.h │ ├── IGUIListBox.h │ ├── IGUIScrollBar.h │ ├── IGUISkin.h │ ├── IGUISpriteBank.h │ ├── IGUIStaticText.h │ ├── IGUITabControl.h │ ├── IGUIToolbar.h │ ├── IImage.h │ ├── IImageLoader.h │ ├── IImageWriter.h │ ├── IIndexBuffer.h │ ├── ILogger.h │ ├── IMaterialRenderer.h │ ├── IMaterialRendererServices.h │ ├── IMemoryReadFile.h │ ├── IMesh.h │ ├── IMeshBuffer.h │ ├── IMeshCache.h │ ├── IMeshLoader.h │ ├── IMeshManipulator.h │ ├── IMeshSceneNode.h │ ├── IOSOperator.h │ ├── IReadFile.h │ ├── IReferenceCounted.h │ ├── IRenderTarget.h │ ├── ISceneCollisionManager.h │ ├── ISceneManager.h │ ├── ISceneNode.h │ ├── IShaderConstantSetCallBack.h │ ├── ISkinnedMesh.h │ ├── ITexture.h │ ├── ITimer.h │ ├── IVertexBuffer.h │ ├── IVideoDriver.h │ ├── IWriteFile.h │ ├── IrrCompileConfig.h │ ├── IrrlichtDevice.h │ ├── KHR │ │ └── khrplatform.h │ ├── Keycodes.h │ ├── S3DVertex.h │ ├── SAnimatedMesh.h │ ├── SColor.h │ ├── SExposedVideoData.h │ ├── SIrrCreationParameters.h │ ├── SMaterial.h │ ├── SMaterialLayer.h │ ├── SMesh.h │ ├── SMeshBuffer.h │ ├── SOverrideMaterial.h │ ├── SSkinMeshBuffer.h │ ├── SVertexIndex.h │ ├── SVertexManipulator.h │ ├── SViewFrustum.h │ ├── SceneParameters.h │ ├── aabbox3d.h │ ├── coreutil.h │ ├── dimension2d.h │ ├── exampleHelper.h │ ├── fast_atof.h │ ├── irrArray.h │ ├── irrMath.h │ ├── irrString.h │ ├── irrTypes.h │ ├── irr_ptr.h │ ├── irrlicht.h │ ├── irrpack.h │ ├── irrunpack.h │ ├── line2d.h │ ├── line3d.h │ ├── matrix4.h │ ├── mt_opengl.h │ ├── path.h │ ├── plane3d.h │ ├── position2d.h │ ├── quaternion.h │ ├── rect.h │ ├── vector2d.h │ └── vector3d.h ├── scripts │ └── BindingGenerator.lua └── src │ ├── BuiltInFont.h │ ├── CAnimatedMeshSceneNode.cpp │ ├── CAnimatedMeshSceneNode.h │ ├── CAttributeImpl.h │ ├── CAttributes.cpp │ ├── CAttributes.h │ ├── CB3DMeshFileLoader.cpp │ ├── CB3DMeshFileLoader.h │ ├── CBillboardSceneNode.cpp │ ├── CBillboardSceneNode.h │ ├── CBlit.h │ ├── CBoneSceneNode.cpp │ ├── CBoneSceneNode.h │ ├── CCameraSceneNode.cpp │ ├── CCameraSceneNode.h │ ├── CColorConverter.cpp │ ├── CColorConverter.h │ ├── CDummyTransformationSceneNode.cpp │ ├── CDummyTransformationSceneNode.h │ ├── CEGLManager.cpp │ ├── CEGLManager.h │ ├── CEmptySceneNode.cpp │ ├── CEmptySceneNode.h │ ├── CFPSCounter.cpp │ ├── CFPSCounter.h │ ├── CFileList.cpp │ ├── CFileList.h │ ├── CFileSystem.cpp │ ├── CFileSystem.h │ ├── CGLTFMeshFileLoader.cpp │ ├── CGLTFMeshFileLoader.h │ ├── CGLXManager.cpp │ ├── CGLXManager.h │ ├── CGUIButton.cpp │ ├── CGUIButton.h │ ├── CGUICheckBox.cpp │ ├── CGUICheckBox.h │ ├── CGUIComboBox.cpp │ ├── CGUIComboBox.h │ ├── CGUIEditBox.cpp │ ├── CGUIEditBox.h │ ├── CGUIEnvironment.cpp │ ├── CGUIEnvironment.h │ ├── CGUIFileOpenDialog.cpp │ ├── CGUIFileOpenDialog.h │ ├── CGUIFont.cpp │ ├── CGUIFont.h │ ├── CGUIImage.cpp │ ├── CGUIImage.h │ ├── CGUIImageList.cpp │ ├── CGUIImageList.h │ ├── CGUIListBox.cpp │ ├── CGUIListBox.h │ ├── CGUIScrollBar.cpp │ ├── CGUIScrollBar.h │ ├── CGUISkin.cpp │ ├── CGUISkin.h │ ├── CGUISpriteBank.cpp │ ├── CGUISpriteBank.h │ ├── CGUIStaticText.cpp │ ├── CGUIStaticText.h │ ├── CGUITabControl.cpp │ ├── CGUITabControl.h │ ├── CImage.cpp │ ├── CImage.h │ ├── CImageLoaderBMP.cpp │ ├── CImageLoaderBMP.h │ ├── CImageLoaderJPG.cpp │ ├── CImageLoaderJPG.h │ ├── CImageLoaderPNG.cpp │ ├── CImageLoaderPNG.h │ ├── CImageLoaderTGA.cpp │ ├── CImageLoaderTGA.h │ ├── CImageWriterJPG.cpp │ ├── CImageWriterJPG.h │ ├── CImageWriterPNG.cpp │ ├── CImageWriterPNG.h │ ├── CIrrDeviceLinux.cpp │ ├── CIrrDeviceLinux.h │ ├── CIrrDeviceOSX.h │ ├── CIrrDeviceOSX.mm │ ├── CIrrDeviceSDL.cpp │ ├── CIrrDeviceSDL.h │ ├── CIrrDeviceStub.cpp │ ├── CIrrDeviceStub.h │ ├── CIrrDeviceWin32.cpp │ ├── CIrrDeviceWin32.h │ ├── CLimitReadFile.cpp │ ├── CLimitReadFile.h │ ├── CLogger.cpp │ ├── CLogger.h │ ├── CMakeLists.txt │ ├── CMemoryFile.cpp │ ├── CMemoryFile.h │ ├── CMeshCache.cpp │ ├── CMeshCache.h │ ├── CMeshManipulator.cpp │ ├── CMeshManipulator.h │ ├── CMeshSceneNode.cpp │ ├── CMeshSceneNode.h │ ├── CNSOGLManager.h │ ├── CNSOGLManager.mm │ ├── CNullDriver.cpp │ ├── CNullDriver.h │ ├── COBJMeshFileLoader.cpp │ ├── COBJMeshFileLoader.h │ ├── COGLESCoreExtensionHandler.h │ ├── COSOperator.cpp │ ├── COSOperator.h │ ├── COpenGLCacheHandler.cpp │ ├── COpenGLCacheHandler.h │ ├── COpenGLCommon.h │ ├── COpenGLCoreCacheHandler.h │ ├── COpenGLCoreFeature.h │ ├── COpenGLCoreRenderTarget.h │ ├── COpenGLCoreTexture.h │ ├── COpenGLDriver.cpp │ ├── COpenGLDriver.h │ ├── COpenGLExtensionHandler.cpp │ ├── COpenGLExtensionHandler.h │ ├── COpenGLMaterialRenderer.h │ ├── COpenGLSLMaterialRenderer.cpp │ ├── COpenGLSLMaterialRenderer.h │ ├── CReadFile.cpp │ ├── CReadFile.h │ ├── CSDLManager.cpp │ ├── CSDLManager.h │ ├── CSceneCollisionManager.cpp │ ├── CSceneCollisionManager.h │ ├── CSceneManager.cpp │ ├── CSceneManager.h │ ├── CSkinnedMesh.cpp │ ├── CSkinnedMesh.h │ ├── CTimer.h │ ├── CWGLManager.cpp │ ├── CWGLManager.h │ ├── CWriteFile.cpp │ ├── CWriteFile.h │ ├── CXMeshFileLoader.cpp │ ├── CXMeshFileLoader.h │ ├── CZipReader.cpp │ ├── CZipReader.h │ ├── IAttribute.h │ ├── Irrlicht.cpp │ ├── OpenGL │ ├── Common.h │ ├── Driver.cpp │ ├── Driver.h │ ├── ExtensionHandler.cpp │ ├── ExtensionHandler.h │ ├── FixedPipelineRenderer.cpp │ ├── FixedPipelineRenderer.h │ ├── MaterialRenderer.cpp │ ├── MaterialRenderer.h │ ├── Renderer2D.cpp │ └── Renderer2D.h │ ├── OpenGL3 │ ├── Driver.cpp │ └── Driver.h │ ├── OpenGLES2 │ ├── Driver.cpp │ └── Driver.h │ ├── SB3DStructs.h │ ├── SoftwareDriver2_helper.h │ ├── builtInFont.png │ ├── mt_opengl_loader.cpp │ ├── os.cpp │ ├── os.h │ └── vendor │ ├── gl.h │ └── glext.h ├── lib ├── bitop │ ├── CMakeLists.txt │ ├── bit.cpp │ └── bit.h ├── catch2 │ ├── CMakeLists.txt │ ├── catch_amalgamated.cpp │ └── catch_amalgamated.hpp ├── gmp │ ├── CMakeLists.txt │ ├── mini-gmp.c │ └── mini-gmp.h ├── jsoncpp │ ├── CMakeLists.txt │ ├── json │ │ ├── UPDATING │ │ ├── json-forwards.h │ │ └── json.h │ └── jsoncpp.cpp ├── lua │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── README.md │ └── src │ │ ├── CMakeLists.txt │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ └── print.c ├── sha256 │ ├── CMakeLists.txt │ ├── cmake_config.h.in │ ├── my_sha256.h │ └── sha256.c └── tiniergltf │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Readme.md │ └── tiniergltf.hpp ├── minetest.conf.example ├── misc ├── AppImageBuilder.yml ├── CPACK_WIX_UI_BANNER.BMP ├── CPACK_WIX_UI_DIALOG.BMP ├── Info.plist ├── luanti-icon.icns ├── luanti-icon.ico ├── luanti.exe.manifest ├── luanti.svg ├── make_redirects.sh ├── net.minetest.minetest.desktop ├── net.minetest.minetest.metainfo.xml ├── redirect.html └── winresource.rc ├── mods └── mods_here.txt ├── po ├── ar │ └── luanti.po ├── be │ └── luanti.po ├── bg │ └── luanti.po ├── ca │ └── luanti.po ├── cs │ └── luanti.po ├── cy │ └── luanti.po ├── da │ └── luanti.po ├── de │ └── luanti.po ├── dv │ └── luanti.po ├── el │ └── luanti.po ├── eo │ └── luanti.po ├── es │ └── luanti.po ├── et │ └── luanti.po ├── eu │ └── luanti.po ├── fa │ └── luanti.po ├── fi │ └── luanti.po ├── fil │ └── luanti.po ├── fr │ └── luanti.po ├── ga │ └── luanti.po ├── gd │ └── luanti.po ├── gl │ └── luanti.po ├── he │ └── luanti.po ├── hi │ └── luanti.po ├── hu │ └── luanti.po ├── ia │ └── luanti.po ├── id │ └── luanti.po ├── it │ └── luanti.po ├── ja │ └── luanti.po ├── jbo │ └── luanti.po ├── jv │ └── luanti.po ├── kk │ └── luanti.po ├── kn │ └── luanti.po ├── ko │ └── luanti.po ├── kv │ └── luanti.po ├── ky │ └── luanti.po ├── lt │ └── luanti.po ├── luanti.pot ├── lv │ └── luanti.po ├── lzh │ └── luanti.po ├── mi │ └── luanti.po ├── mn │ └── luanti.po ├── mr │ └── luanti.po ├── ms │ └── luanti.po ├── ms_Arab │ └── luanti.po ├── nb │ └── luanti.po ├── nl │ └── luanti.po ├── nn │ └── luanti.po ├── oc │ └── luanti.po ├── pl │ └── luanti.po ├── pt │ └── luanti.po ├── pt_BR │ └── luanti.po ├── ro │ └── luanti.po ├── ru │ └── luanti.po ├── sk │ └── luanti.po ├── sl │ └── luanti.po ├── sr_Cyrl │ └── luanti.po ├── sr_Latn │ └── luanti.po ├── sv │ └── luanti.po ├── sw │ └── luanti.po ├── th │ └── luanti.po ├── tok │ └── luanti.po ├── tr │ └── luanti.po ├── tt │ └── luanti.po ├── uk │ └── luanti.po ├── vi │ └── luanti.po ├── yue │ └── luanti.po ├── zh_CN │ └── luanti.po └── zh_TW │ └── luanti.po ├── shell.nix ├── src ├── CMakeLists.txt ├── activeobject.h ├── activeobjectmgr.h ├── benchmark │ ├── CMakeLists.txt │ ├── benchmark.cpp │ ├── benchmark.h │ ├── benchmark_activeobjectmgr.cpp │ ├── benchmark_lighting.cpp │ ├── benchmark_mapblock.cpp │ ├── benchmark_mapmodify.cpp │ └── benchmark_serialize.cpp ├── catch.cpp ├── catch.h ├── chat.cpp ├── chat.h ├── chat_interface.h ├── chatmessage.h ├── client │ ├── CMakeLists.txt │ ├── activeobjectmgr.cpp │ ├── activeobjectmgr.h │ ├── camera.cpp │ ├── camera.h │ ├── client.cpp │ ├── client.h │ ├── clientenvironment.cpp │ ├── clientenvironment.h │ ├── clientevent.h │ ├── clientlauncher.cpp │ ├── clientlauncher.h │ ├── clientmap.cpp │ ├── clientmap.h │ ├── clientmedia.cpp │ ├── clientmedia.h │ ├── clientobject.cpp │ ├── clientobject.h │ ├── clientsimpleobject.h │ ├── clouds.cpp │ ├── clouds.h │ ├── content_cao.cpp │ ├── content_cao.h │ ├── content_cso.cpp │ ├── content_cso.h │ ├── content_mapblock.cpp │ ├── content_mapblock.h │ ├── event_manager.h │ ├── filecache.cpp │ ├── filecache.h │ ├── fontengine.cpp │ ├── fontengine.h │ ├── game.cpp │ ├── game.h │ ├── gameui.cpp │ ├── gameui.h │ ├── guiscalingfilter.cpp │ ├── guiscalingfilter.h │ ├── hud.cpp │ ├── hud.h │ ├── imagefilters.cpp │ ├── imagefilters.h │ ├── imagesource.cpp │ ├── imagesource.h │ ├── inputhandler.cpp │ ├── inputhandler.h │ ├── joystick_controller.cpp │ ├── joystick_controller.h │ ├── keycode.cpp │ ├── keycode.h │ ├── keys.h │ ├── localplayer.cpp │ ├── localplayer.h │ ├── mapblock_mesh.cpp │ ├── mapblock_mesh.h │ ├── mesh.cpp │ ├── mesh.h │ ├── mesh_generator_thread.cpp │ ├── mesh_generator_thread.h │ ├── meshgen │ │ ├── collector.cpp │ │ └── collector.h │ ├── minimap.cpp │ ├── minimap.h │ ├── mtevent.h │ ├── particles.cpp │ ├── particles.h │ ├── render │ │ ├── anaglyph.cpp │ │ ├── anaglyph.h │ │ ├── core.cpp │ │ ├── core.h │ │ ├── factory.cpp │ │ ├── factory.h │ │ ├── interlaced.cpp │ │ ├── interlaced.h │ │ ├── pipeline.cpp │ │ ├── pipeline.h │ │ ├── plain.cpp │ │ ├── plain.h │ │ ├── secondstage.cpp │ │ ├── secondstage.h │ │ ├── sidebyside.cpp │ │ ├── sidebyside.h │ │ ├── stereo.cpp │ │ └── stereo.h │ ├── renderingengine.cpp │ ├── renderingengine.h │ ├── shader.cpp │ ├── shader.h │ ├── shadows │ │ ├── dynamicshadows.cpp │ │ ├── dynamicshadows.h │ │ ├── dynamicshadowsrender.cpp │ │ ├── dynamicshadowsrender.h │ │ ├── shadowsScreenQuad.cpp │ │ ├── shadowsScreenQuad.h │ │ ├── shadowsshadercallbacks.cpp │ │ └── shadowsshadercallbacks.h │ ├── sky.cpp │ ├── sky.h │ ├── sound.cpp │ ├── sound.h │ ├── sound │ │ ├── al_extensions.cpp │ │ ├── al_extensions.h │ │ ├── al_helpers.cpp │ │ ├── al_helpers.h │ │ ├── ogg_file.cpp │ │ ├── ogg_file.h │ │ ├── playing_sound.cpp │ │ ├── playing_sound.h │ │ ├── proxy_sound_manager.cpp │ │ ├── proxy_sound_manager.h │ │ ├── sound_constants.h │ │ ├── sound_data.cpp │ │ ├── sound_data.h │ │ ├── sound_manager.cpp │ │ ├── sound_manager.h │ │ ├── sound_manager_messages.h │ │ ├── sound_openal.cpp │ │ ├── sound_openal.h │ │ ├── sound_singleton.cpp │ │ └── sound_singleton.h │ ├── texturepaths.cpp │ ├── texturepaths.h │ ├── texturesource.cpp │ ├── texturesource.h │ ├── tile.cpp │ ├── tile.h │ ├── wieldmesh.cpp │ └── wieldmesh.h ├── clientdynamicinfo.cpp ├── clientdynamicinfo.h ├── cmake_config.h.in ├── cmake_config_githash.h.in ├── collision.cpp ├── collision.h ├── config.h ├── constants.h ├── content │ ├── CMakeLists.txt │ ├── content.cpp │ ├── content.h │ ├── mod_configuration.cpp │ ├── mod_configuration.h │ ├── mods.cpp │ ├── mods.h │ ├── subgames.cpp │ └── subgames.h ├── content_mapnode.cpp ├── content_mapnode.h ├── content_nodemeta.cpp ├── content_nodemeta.h ├── convert_json.cpp ├── convert_json.h ├── craftdef.cpp ├── craftdef.h ├── database │ ├── CMakeLists.txt │ ├── database-dummy.cpp │ ├── database-dummy.h │ ├── database-files.cpp │ ├── database-files.h │ ├── database-leveldb.cpp │ ├── database-leveldb.h │ ├── database-postgresql.cpp │ ├── database-postgresql.h │ ├── database-redis.cpp │ ├── database-redis.h │ ├── database-sqlite3.cpp │ ├── database-sqlite3.h │ ├── database.cpp │ └── database.h ├── daynightratio.h ├── debug.cpp ├── debug.h ├── defaultsettings.cpp ├── defaultsettings.h ├── dummygamedef.h ├── dummymap.h ├── emerge.cpp ├── emerge.h ├── emerge_internal.h ├── environment.cpp ├── environment.h ├── exceptions.h ├── face_position_cache.cpp ├── face_position_cache.h ├── filesys.cpp ├── filesys.h ├── gamedef.h ├── gameparams.h ├── gettext.cpp ├── gettext.h ├── gettext_plural_form.cpp ├── gettext_plural_form.h ├── gettime.h ├── gui │ ├── CMakeLists.txt │ ├── StyleSpec.h │ ├── guiAnimatedImage.cpp │ ├── guiAnimatedImage.h │ ├── guiBackgroundImage.cpp │ ├── guiBackgroundImage.h │ ├── guiBox.cpp │ ├── guiBox.h │ ├── guiButton.cpp │ ├── guiButton.h │ ├── guiButtonImage.cpp │ ├── guiButtonImage.h │ ├── guiButtonItemImage.cpp │ ├── guiButtonItemImage.h │ ├── guiChatConsole.cpp │ ├── guiChatConsole.h │ ├── guiEditBox.cpp │ ├── guiEditBox.h │ ├── guiEditBoxWithScrollbar.cpp │ ├── guiEditBoxWithScrollbar.h │ ├── guiEngine.cpp │ ├── guiEngine.h │ ├── guiFormSpecMenu.cpp │ ├── guiFormSpecMenu.h │ ├── guiHyperText.cpp │ ├── guiHyperText.h │ ├── guiInventoryList.cpp │ ├── guiInventoryList.h │ ├── guiItemImage.cpp │ ├── guiItemImage.h │ ├── guiKeyChangeMenu.cpp │ ├── guiKeyChangeMenu.h │ ├── guiMainMenu.h │ ├── guiOpenURL.cpp │ ├── guiOpenURL.h │ ├── guiPasswordChange.cpp │ ├── guiPasswordChange.h │ ├── guiPathSelectMenu.cpp │ ├── guiPathSelectMenu.h │ ├── guiScene.cpp │ ├── guiScene.h │ ├── guiScrollBar.cpp │ ├── guiScrollBar.h │ ├── guiScrollContainer.cpp │ ├── guiScrollContainer.h │ ├── guiSkin.cpp │ ├── guiTable.cpp │ ├── guiTable.h │ ├── guiVolumeChange.cpp │ ├── guiVolumeChange.h │ ├── mainmenumanager.h │ ├── modalMenu.cpp │ ├── modalMenu.h │ ├── profilergraph.cpp │ ├── profilergraph.h │ ├── touchcontrols.cpp │ └── touchcontrols.h ├── httpfetch.cpp ├── httpfetch.h ├── hud.cpp ├── hud.h ├── inventory.cpp ├── inventory.h ├── inventorymanager.cpp ├── inventorymanager.h ├── irr_aabb3d.h ├── irr_v2d.h ├── irr_v3d.h ├── irrlicht_changes │ ├── CGUITTFont.cpp │ ├── CGUITTFont.h │ ├── CMakeLists.txt │ ├── printing.h │ ├── static_text.cpp │ └── static_text.h ├── irrlichttypes.h ├── irrlichttypes_bloated.h ├── irrlichttypes_extrabloated.h ├── itemdef.cpp ├── itemdef.h ├── itemgroup.h ├── itemstackmetadata.cpp ├── itemstackmetadata.h ├── json-forwards.h ├── light.cpp ├── light.h ├── lighting.cpp ├── lighting.h ├── log.cpp ├── log.h ├── log_internal.h ├── main.cpp ├── map.cpp ├── map.h ├── map_settings_manager.cpp ├── map_settings_manager.h ├── mapblock.cpp ├── mapblock.h ├── mapgen │ ├── CMakeLists.txt │ ├── cavegen.cpp │ ├── cavegen.h │ ├── dungeongen.cpp │ ├── dungeongen.h │ ├── mapgen.cpp │ ├── mapgen.h │ ├── mapgen_carpathian.cpp │ ├── mapgen_carpathian.h │ ├── mapgen_flat.cpp │ ├── mapgen_flat.h │ ├── mapgen_fractal.cpp │ ├── mapgen_fractal.h │ ├── mapgen_singlenode.cpp │ ├── mapgen_singlenode.h │ ├── mapgen_v5.cpp │ ├── mapgen_v5.h │ ├── mapgen_v6.cpp │ ├── mapgen_v6.h │ ├── mapgen_v7.cpp │ ├── mapgen_v7.h │ ├── mapgen_valleys.cpp │ ├── mapgen_valleys.h │ ├── mg_biome.cpp │ ├── mg_biome.h │ ├── mg_decoration.cpp │ ├── mg_decoration.h │ ├── mg_ore.cpp │ ├── mg_ore.h │ ├── mg_schematic.cpp │ ├── mg_schematic.h │ ├── treegen.cpp │ └── treegen.h ├── mapnode.cpp ├── mapnode.h ├── mapsector.cpp ├── mapsector.h ├── metadata.cpp ├── metadata.h ├── migratesettings.h ├── modchannels.cpp ├── modchannels.h ├── modifiedstate.h ├── nameidmapping.cpp ├── nameidmapping.h ├── network │ ├── CMakeLists.txt │ ├── address.cpp │ ├── address.h │ ├── clientopcodes.cpp │ ├── clientopcodes.h │ ├── clientpackethandler.cpp │ ├── connection.cpp │ ├── connection.h │ ├── mtp │ │ ├── impl.cpp │ │ ├── impl.h │ │ ├── internal.h │ │ ├── threads.cpp │ │ └── threads.h │ ├── networkexceptions.h │ ├── networkpacket.cpp │ ├── networkpacket.h │ ├── networkprotocol.cpp │ ├── networkprotocol.h │ ├── peerhandler.h │ ├── serveropcodes.cpp │ ├── serveropcodes.h │ ├── serverpackethandler.cpp │ ├── socket.cpp │ └── socket.h ├── nodedef.cpp ├── nodedef.h ├── nodemetadata.cpp ├── nodemetadata.h ├── nodetimer.cpp ├── nodetimer.h ├── noise.cpp ├── noise.h ├── objdef.cpp ├── objdef.h ├── object_properties.cpp ├── object_properties.h ├── particles.cpp ├── particles.h ├── pathfinder.cpp ├── pathfinder.h ├── player.cpp ├── player.h ├── porting.cpp ├── porting.h ├── porting_android.cpp ├── porting_android.h ├── precompiled_headers.txt ├── profiler.cpp ├── profiler.h ├── raycast.cpp ├── raycast.h ├── reflowscan.cpp ├── reflowscan.h ├── remoteplayer.cpp ├── remoteplayer.h ├── rollback_interface.cpp ├── rollback_interface.h ├── script │ ├── CMakeLists.txt │ ├── common │ │ ├── CMakeLists.txt │ │ ├── c_content.cpp │ │ ├── c_content.h │ │ ├── c_converter.cpp │ │ ├── c_converter.h │ │ ├── c_internal.cpp │ │ ├── c_internal.h │ │ ├── c_packer.cpp │ │ ├── c_packer.h │ │ ├── c_types.cpp │ │ ├── c_types.h │ │ ├── helper.cpp │ │ └── helper.h │ ├── cpp_api │ │ ├── CMakeLists.txt │ │ ├── s_async.cpp │ │ ├── s_async.h │ │ ├── s_base.cpp │ │ ├── s_base.h │ │ ├── s_client.cpp │ │ ├── s_client.h │ │ ├── s_entity.cpp │ │ ├── s_entity.h │ │ ├── s_env.cpp │ │ ├── s_env.h │ │ ├── s_internal.h │ │ ├── s_inventory.cpp │ │ ├── s_inventory.h │ │ ├── s_item.cpp │ │ ├── s_item.h │ │ ├── s_mainmenu.cpp │ │ ├── s_mainmenu.h │ │ ├── s_mapgen.cpp │ │ ├── s_mapgen.h │ │ ├── s_modchannels.cpp │ │ ├── s_modchannels.h │ │ ├── s_node.cpp │ │ ├── s_node.h │ │ ├── s_nodemeta.cpp │ │ ├── s_nodemeta.h │ │ ├── s_player.cpp │ │ ├── s_player.h │ │ ├── s_security.cpp │ │ ├── s_security.h │ │ ├── s_server.cpp │ │ └── s_server.h │ ├── lua_api │ │ ├── CMakeLists.txt │ │ ├── l_areastore.cpp │ │ ├── l_areastore.h │ │ ├── l_auth.cpp │ │ ├── l_auth.h │ │ ├── l_base.cpp │ │ ├── l_base.h │ │ ├── l_camera.cpp │ │ ├── l_camera.h │ │ ├── l_client.cpp │ │ ├── l_client.h │ │ ├── l_client_sound.cpp │ │ ├── l_client_sound.h │ │ ├── l_craft.cpp │ │ ├── l_craft.h │ │ ├── l_env.cpp │ │ ├── l_env.h │ │ ├── l_http.cpp │ │ ├── l_http.h │ │ ├── l_internal.h │ │ ├── l_inventory.cpp │ │ ├── l_inventory.h │ │ ├── l_ipc.cpp │ │ ├── l_ipc.h │ │ ├── l_item.cpp │ │ ├── l_item.h │ │ ├── l_itemstackmeta.cpp │ │ ├── l_itemstackmeta.h │ │ ├── l_localplayer.cpp │ │ ├── l_localplayer.h │ │ ├── l_mainmenu.cpp │ │ ├── l_mainmenu.h │ │ ├── l_mainmenu_sound.cpp │ │ ├── l_mainmenu_sound.h │ │ ├── l_mapgen.cpp │ │ ├── l_mapgen.h │ │ ├── l_metadata.cpp │ │ ├── l_metadata.h │ │ ├── l_minimap.cpp │ │ ├── l_minimap.h │ │ ├── l_modchannels.cpp │ │ ├── l_modchannels.h │ │ ├── l_nodemeta.cpp │ │ ├── l_nodemeta.h │ │ ├── l_nodetimer.cpp │ │ ├── l_nodetimer.h │ │ ├── l_noise.cpp │ │ ├── l_noise.h │ │ ├── l_object.cpp │ │ ├── l_object.h │ │ ├── l_particleparams.h │ │ ├── l_particles.cpp │ │ ├── l_particles.h │ │ ├── l_particles_local.cpp │ │ ├── l_particles_local.h │ │ ├── l_playermeta.cpp │ │ ├── l_playermeta.h │ │ ├── l_rollback.cpp │ │ ├── l_rollback.h │ │ ├── l_server.cpp │ │ ├── l_server.h │ │ ├── l_settings.cpp │ │ ├── l_settings.h │ │ ├── l_storage.cpp │ │ ├── l_storage.h │ │ ├── l_util.cpp │ │ ├── l_util.h │ │ ├── l_vmanip.cpp │ │ └── l_vmanip.h │ ├── scripting_client.cpp │ ├── scripting_client.h │ ├── scripting_emerge.cpp │ ├── scripting_emerge.h │ ├── scripting_mainmenu.cpp │ ├── scripting_mainmenu.h │ ├── scripting_server.cpp │ └── scripting_server.h ├── serialization.cpp ├── serialization.h ├── server.cpp ├── server.h ├── server │ ├── CMakeLists.txt │ ├── activeobjectmgr.cpp │ ├── activeobjectmgr.h │ ├── ban.cpp │ ├── ban.h │ ├── clientiface.cpp │ ├── clientiface.h │ ├── luaentity_sao.cpp │ ├── luaentity_sao.h │ ├── mods.cpp │ ├── mods.h │ ├── player_sao.cpp │ ├── player_sao.h │ ├── rollback.cpp │ ├── rollback.h │ ├── serveractiveobject.cpp │ ├── serveractiveobject.h │ ├── serverinventorymgr.cpp │ ├── serverinventorymgr.h │ ├── serverlist.cpp │ ├── serverlist.h │ ├── unit_sao.cpp │ └── unit_sao.h ├── serverenvironment.cpp ├── serverenvironment.h ├── servermap.cpp ├── servermap.h ├── settings.cpp ├── settings.h ├── settings_translation_file.cpp ├── skyparams.h ├── sound.h ├── staticobject.cpp ├── staticobject.h ├── terminal_chat_console.cpp ├── terminal_chat_console.h ├── texture_override.cpp ├── texture_override.h ├── threading │ ├── CMakeLists.txt │ ├── event.cpp │ ├── event.h │ ├── lambda.h │ ├── mutex_auto_lock.h │ ├── ordered_mutex.h │ ├── semaphore.cpp │ ├── semaphore.h │ ├── thread.cpp │ └── thread.h ├── tileanimation.cpp ├── tileanimation.h ├── tool.cpp ├── tool.h ├── translation.cpp ├── translation.h ├── unittest │ ├── CMakeLists.txt │ ├── mesh_compare.cpp │ ├── mesh_compare.h │ ├── mock_activeobject.h │ ├── mock_inventorymanager.h │ ├── mock_server.h │ ├── mock_serveractiveobject.h │ ├── test.cpp │ ├── test.h │ ├── test_activeobject.cpp │ ├── test_address.cpp │ ├── test_areastore.cpp │ ├── test_authdatabase.cpp │ ├── test_ban.cpp │ ├── test_clientactiveobjectmgr.cpp │ ├── test_collision.cpp │ ├── test_compression.cpp │ ├── test_connection.cpp │ ├── test_content_mapblock.cpp │ ├── test_craft.cpp │ ├── test_datastructures.cpp │ ├── test_eventmanager.cpp │ ├── test_filesys.cpp │ ├── test_gameui.cpp │ ├── test_gettext.cpp │ ├── test_inventory.cpp │ ├── test_irr_gltf_mesh_loader.cpp │ ├── test_irrptr.cpp │ ├── test_keycode.cpp │ ├── test_logging.cpp │ ├── test_lua.cpp │ ├── test_map.cpp │ ├── test_map_settings_manager.cpp │ ├── test_mapblock.cpp │ ├── test_mapnode.cpp │ ├── test_mesh_compare.cpp │ ├── test_modchannels.cpp │ ├── test_modstoragedatabase.cpp │ ├── test_moveaction.cpp │ ├── test_nodedef.cpp │ ├── test_noderesolver.cpp │ ├── test_noise.cpp │ ├── test_objdef.cpp │ ├── test_profiler.cpp │ ├── test_random.cpp │ ├── test_sao.cpp │ ├── test_schematic.cpp │ ├── test_serialization.cpp │ ├── test_server_shutdown_state.cpp │ ├── test_serveractiveobjectmgr.cpp │ ├── test_servermodmanager.cpp │ ├── test_settings.cpp │ ├── test_socket.cpp │ ├── test_threading.cpp │ ├── test_translations.cpp │ ├── test_utilities.cpp │ ├── test_voxelalgorithms.cpp │ ├── test_voxelarea.cpp │ └── test_voxelmanipulator.cpp ├── unsupported_language_list.txt ├── util │ ├── CMakeLists.txt │ ├── areastore.cpp │ ├── areastore.h │ ├── auth.cpp │ ├── auth.h │ ├── base64.cpp │ ├── base64.h │ ├── basic_macros.h │ ├── colorize.cpp │ ├── colorize.h │ ├── container.h │ ├── directiontables.cpp │ ├── directiontables.h │ ├── enriched_string.cpp │ ├── enriched_string.h │ ├── hex.h │ ├── ieee_float.cpp │ ├── ieee_float.h │ ├── metricsbackend.cpp │ ├── metricsbackend.h │ ├── numeric.cpp │ ├── numeric.h │ ├── png.cpp │ ├── png.h │ ├── pointabilities.cpp │ ├── pointabilities.h │ ├── pointedthing.cpp │ ├── pointedthing.h │ ├── pointer.h │ ├── quicktune.cpp │ ├── quicktune.h │ ├── quicktune_shortcutter.h │ ├── serialize.cpp │ ├── serialize.h │ ├── sha1.cpp │ ├── sha1.h │ ├── srp.cpp │ ├── srp.h │ ├── stream.h │ ├── strfnd.h │ ├── string.cpp │ ├── string.h │ ├── thread.h │ ├── timetaker.cpp │ ├── timetaker.h │ └── tracy_wrapper.h ├── version.cpp ├── version.h ├── voxel.cpp ├── voxel.h ├── voxelalgorithms.cpp └── voxelalgorithms.h ├── textures ├── base │ └── pack │ │ ├── air.png │ │ ├── aux1_btn.png │ │ ├── blank.png │ │ ├── bubble.png │ │ ├── bubble_gone.png │ │ ├── button_hover_semitrans.png │ │ ├── button_press_semitrans.png │ │ ├── camera_btn.png │ │ ├── cdb_downloading.png │ │ ├── cdb_queued.png │ │ ├── cdb_update.png │ │ ├── cdb_update_cropped.png │ │ ├── chat_btn.png │ │ ├── chat_hide_btn.png │ │ ├── chat_show_btn.png │ │ ├── checkbox_16.png │ │ ├── checkbox_32.png │ │ ├── checkbox_64.png │ │ ├── clear.png │ │ ├── crack_anylength.png │ │ ├── debug_btn.png │ │ ├── down.png │ │ ├── drop_btn.png │ │ ├── end_icon.png │ │ ├── error_icon_orange.png │ │ ├── error_icon_red.png │ │ ├── error_screenshot.png │ │ ├── exit_btn.png │ │ ├── fast_btn.png │ │ ├── file.png │ │ ├── fly_btn.png │ │ ├── folder.png │ │ ├── halo.png │ │ ├── heart.png │ │ ├── heart_gone.png │ │ ├── ignore.png │ │ ├── inventory_btn.png │ │ ├── joystick_bg.png │ │ ├── joystick_center.png │ │ ├── joystick_off.png │ │ ├── jump_btn.png │ │ ├── loading_screenshot.png │ │ ├── logo.png │ │ ├── menu_bg.png │ │ ├── menu_header.png │ │ ├── minimap_btn.png │ │ ├── minimap_mask_round.png │ │ ├── minimap_mask_square.png │ │ ├── minimap_overlay_round.png │ │ ├── minimap_overlay_square.png │ │ ├── next_icon.png │ │ ├── no_screenshot.png │ │ ├── no_texture.png │ │ ├── no_texture_airlike.png │ │ ├── noclip_btn.png │ │ ├── object_marker_red.png │ │ ├── overflow_btn.png │ │ ├── player.png │ │ ├── player_back.png │ │ ├── player_marker.png │ │ ├── plus.png │ │ ├── prev_icon.png │ │ ├── progress_bar.png │ │ ├── progress_bar_bg.png │ │ ├── rangeview_btn.png │ │ ├── refresh.png │ │ ├── search.png │ │ ├── server_favorite.png │ │ ├── server_favorite_delete.png │ │ ├── server_flags_creative.png │ │ ├── server_flags_damage.png │ │ ├── server_flags_pvp.png │ │ ├── server_incompatible.png │ │ ├── server_ping_1.png │ │ ├── server_ping_2.png │ │ ├── server_ping_3.png │ │ ├── server_ping_4.png │ │ ├── server_public.png │ │ ├── settings_btn.png │ │ ├── settings_info.png │ │ ├── settings_reset.png │ │ ├── smoke_puff.png │ │ ├── start_icon.png │ │ ├── sunrisebg.png │ │ ├── unknown_item.png │ │ ├── unknown_node.png │ │ ├── unknown_object.png │ │ ├── up_icon.png │ │ ├── wieldhand.png │ │ └── zoom.png └── texture_packs_here.txt ├── util ├── buildbot │ ├── buildwin32.sh │ ├── buildwin64.sh │ ├── common.sh │ ├── download_toolchain.sh │ ├── sha256sums.txt │ ├── toolchain_i686-w64-mingw32.cmake │ └── toolchain_x86_64-w64-mingw32.cmake ├── bump_version.sh ├── ci │ ├── build.sh │ ├── build_luajit.sh │ ├── build_prometheus_cpp.sh │ ├── clang-tidy.sh │ ├── common.sh │ └── run-clang-tidy.py ├── gather_git_credits.py ├── helper_mod │ ├── error.lua │ ├── init.lua │ └── mod.conf ├── reorder_translation_commits.py ├── stress_mapgen.sh ├── test_error_cases.sh ├── test_multiplayer.sh ├── updatepo.sh └── wireshark │ └── minetest.lua └── worlds └── worlds_here.txt /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/lua.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.github/workflows/lua.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.mailmap -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/icons/aux1_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/aux1_btn.svg -------------------------------------------------------------------------------- /android/icons/camera_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/camera_btn.svg -------------------------------------------------------------------------------- /android/icons/chat_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/chat_btn.svg -------------------------------------------------------------------------------- /android/icons/debug_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/debug_btn.svg -------------------------------------------------------------------------------- /android/icons/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/down.svg -------------------------------------------------------------------------------- /android/icons/drop_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/drop_btn.svg -------------------------------------------------------------------------------- /android/icons/exit_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/exit_btn.svg -------------------------------------------------------------------------------- /android/icons/fast_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/fast_btn.svg -------------------------------------------------------------------------------- /android/icons/fly_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/fly_btn.svg -------------------------------------------------------------------------------- /android/icons/jump_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/jump_btn.svg -------------------------------------------------------------------------------- /android/icons/noclip_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/noclip_btn.svg -------------------------------------------------------------------------------- /android/icons/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/icons/zoom.svg -------------------------------------------------------------------------------- /android/native/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/android/native/build.gradle -------------------------------------------------------------------------------- /android/native/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "Luanti" 2 | include ':app', ':native' 3 | -------------------------------------------------------------------------------- /builtin/async/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/async/game.lua -------------------------------------------------------------------------------- /builtin/async/mainmenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/async/mainmenu.lua -------------------------------------------------------------------------------- /builtin/client/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/client/init.lua -------------------------------------------------------------------------------- /builtin/client/misc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/client/misc.lua -------------------------------------------------------------------------------- /builtin/client/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/client/register.lua -------------------------------------------------------------------------------- /builtin/common/after.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/after.lua -------------------------------------------------------------------------------- /builtin/common/item_s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/item_s.lua -------------------------------------------------------------------------------- /builtin/common/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/math.lua -------------------------------------------------------------------------------- /builtin/common/metatable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/metatable.lua -------------------------------------------------------------------------------- /builtin/common/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/register.lua -------------------------------------------------------------------------------- /builtin/common/serialize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/serialize.lua -------------------------------------------------------------------------------- /builtin/common/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/strict.lua -------------------------------------------------------------------------------- /builtin/common/vector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/common/vector.lua -------------------------------------------------------------------------------- /builtin/emerge/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/emerge/env.lua -------------------------------------------------------------------------------- /builtin/emerge/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/emerge/init.lua -------------------------------------------------------------------------------- /builtin/emerge/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/emerge/register.lua -------------------------------------------------------------------------------- /builtin/fstk/buttonbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/fstk/buttonbar.lua -------------------------------------------------------------------------------- /builtin/fstk/dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/fstk/dialog.lua -------------------------------------------------------------------------------- /builtin/fstk/tabview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/fstk/tabview.lua -------------------------------------------------------------------------------- /builtin/fstk/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/fstk/ui.lua -------------------------------------------------------------------------------- /builtin/game/async.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/async.lua -------------------------------------------------------------------------------- /builtin/game/auth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/auth.lua -------------------------------------------------------------------------------- /builtin/game/chat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/chat.lua -------------------------------------------------------------------------------- /builtin/game/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/constants.lua -------------------------------------------------------------------------------- /builtin/game/deprecated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/deprecated.lua -------------------------------------------------------------------------------- /builtin/game/falling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/falling.lua -------------------------------------------------------------------------------- /builtin/game/features.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/features.lua -------------------------------------------------------------------------------- /builtin/game/hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/hud.lua -------------------------------------------------------------------------------- /builtin/game/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/init.lua -------------------------------------------------------------------------------- /builtin/game/item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/item.lua -------------------------------------------------------------------------------- /builtin/game/item_entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/item_entity.lua -------------------------------------------------------------------------------- /builtin/game/knockback.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/knockback.lua -------------------------------------------------------------------------------- /builtin/game/misc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/misc.lua -------------------------------------------------------------------------------- /builtin/game/misc_s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/misc_s.lua -------------------------------------------------------------------------------- /builtin/game/privileges.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/privileges.lua -------------------------------------------------------------------------------- /builtin/game/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/register.lua -------------------------------------------------------------------------------- /builtin/game/voxelarea.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/game/voxelarea.lua -------------------------------------------------------------------------------- /builtin/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/init.lua -------------------------------------------------------------------------------- /builtin/locale/__builtin.be.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Вы загінулі 3 | Respawn=Адрадзіцца 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.bg.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Умряхте 3 | Respawn=Прераждане 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.ca.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Has mort 3 | Respawn=Reaparèixer 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.cs.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Zemřel jsi 3 | Respawn=Oživit 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.cy.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Buest ti farw 3 | Respawn=Atgyfodi 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.da.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Du døde 3 | Respawn=Genopstå 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.es.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Has muerto 3 | Respawn=Reaparecer 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.et.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Said surma 3 | Respawn=Ärka ellu 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.eu.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Hil zara 3 | Respawn=Birsortu 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.fi.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Kuolit 3 | Respawn=Synny uudelleen 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.ga.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Fuair tú bás 3 | Respawn=Athsceith 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.gl.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Morreches 3 | Respawn=Reaparecer 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.hu.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Meghaltál 3 | Respawn=Újraéledés 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.ja.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=死んでしまった 3 | Respawn=リスポーン 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.jbo.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=.i do morsi 3 | Respawn=tolcanci 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.ko.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=사망했습니다 3 | Respawn=리스폰 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.kv.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Кулінныд 3 | Respawn=Ловзьыны 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.ky.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Сиз өлдүңүз. 3 | Respawn=Кайтадан жаралуу 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.lt.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Jūs numirėte 3 | Respawn=Prisikelti 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.lv.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Jūs nomirāt 3 | Respawn=Atdzīvoties 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.lzh.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=尔死矣 3 | Respawn=复生 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.mn.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Та үхсэн 3 | Respawn=Дахин төрөх 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.mr.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=तू मेलास 3 | Respawn=पुनर्जन्म 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.nb.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Du døde 3 | Respawn=Gjenoppstå 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.nn.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Du døydde 3 | Respawn=Kom opp att 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.oc.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Setz mòrt·a 3 | Respawn=Tornar 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.pl.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Nie żyjesz 3 | Respawn=Wróć do gry 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.pt.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Você morreu 3 | Respawn=Renascer 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.ro.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Ai murit 3 | Respawn=Reînviere 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.sk.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Zomrel si 3 | Respawn=Oživiť 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.sl.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Umrl si 3 | Respawn=Ponovno oživi 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.sr_Cyrl.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Умро си 3 | Respawn=Врати се у живот 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.sv.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Du dog 3 | Respawn=Återuppstå 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.tok.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=sina moli 3 | Respawn=o kama sin 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.tr.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Öldün 3 | Respawn=Yeniden Canlan 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.uk.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Ви загинули 3 | Respawn=Відродитися 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.vi.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=Bạn đã bị chết 3 | Respawn=Hồi sinh 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.zh_CN.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=您已死亡 3 | Respawn=重生 4 | -------------------------------------------------------------------------------- /builtin/locale/__builtin.zh_TW.tr: -------------------------------------------------------------------------------- 1 | # textdomain: __builtin 2 | You died=您已死亡 3 | Respawn=重生 4 | -------------------------------------------------------------------------------- /builtin/locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/locale/template.txt -------------------------------------------------------------------------------- /builtin/mainmenu/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/mainmenu/common.lua -------------------------------------------------------------------------------- /builtin/mainmenu/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/mainmenu/init.lua -------------------------------------------------------------------------------- /builtin/profiler/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/profiler/init.lua -------------------------------------------------------------------------------- /builtin/settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/builtin/settingtypes.txt -------------------------------------------------------------------------------- /client/serverlist/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /clientmods/preview/examples/first.lua: -------------------------------------------------------------------------------- 1 | print("loaded first.lua example file") 2 | -------------------------------------------------------------------------------- /clientmods/preview/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/clientmods/preview/init.lua -------------------------------------------------------------------------------- /clientmods/preview/mod.conf: -------------------------------------------------------------------------------- 1 | name = preview 2 | -------------------------------------------------------------------------------- /cmake/Modules/FindCURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/cmake/Modules/FindCURL.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/cmake/Modules/FindGMP.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindJson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/cmake/Modules/FindJson.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/cmake/Modules/FindLua.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindZstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/cmake/Modules/FindZstd.cmake -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/android.md -------------------------------------------------------------------------------- /doc/breakages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/breakages.md -------------------------------------------------------------------------------- /doc/builtin_entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/builtin_entities.md -------------------------------------------------------------------------------- /doc/client_lua_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/client_lua_api.md -------------------------------------------------------------------------------- /doc/compiling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/compiling/README.md -------------------------------------------------------------------------------- /doc/compiling/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/compiling/linux.md -------------------------------------------------------------------------------- /doc/compiling/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/compiling/macos.md -------------------------------------------------------------------------------- /doc/compiling/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/compiling/windows.md -------------------------------------------------------------------------------- /doc/developing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/developing/README.md -------------------------------------------------------------------------------- /doc/developing/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/developing/android.md -------------------------------------------------------------------------------- /doc/developing/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/developing/docker.md -------------------------------------------------------------------------------- /doc/developing/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/developing/misc.md -------------------------------------------------------------------------------- /doc/direction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/direction.md -------------------------------------------------------------------------------- /doc/docker_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/docker_server.md -------------------------------------------------------------------------------- /doc/fst_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/fst_api.txt -------------------------------------------------------------------------------- /doc/ides/jetbrains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/ides/jetbrains.md -------------------------------------------------------------------------------- /doc/ides/visual_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/ides/visual_studio.md -------------------------------------------------------------------------------- /doc/ides/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/ides/vscode.md -------------------------------------------------------------------------------- /doc/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/lgpl-2.1.txt -------------------------------------------------------------------------------- /doc/lua_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/lua_api.md -------------------------------------------------------------------------------- /doc/lua_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/lua_api.txt -------------------------------------------------------------------------------- /doc/luanti.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/luanti.6 -------------------------------------------------------------------------------- /doc/luantiserver.6: -------------------------------------------------------------------------------- 1 | .so man6/luanti.6 2 | 3 | -------------------------------------------------------------------------------- /doc/main_page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/main_page.dox -------------------------------------------------------------------------------- /doc/menu_lua_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/menu_lua_api.md -------------------------------------------------------------------------------- /doc/mkdocs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/mkdocs/build.sh -------------------------------------------------------------------------------- /doc/mkdocs/docs/img/favicon.ico: -------------------------------------------------------------------------------- 1 | ../../../../misc/luanti-icon.ico -------------------------------------------------------------------------------- /doc/mkdocs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/mkdocs/requirements.txt -------------------------------------------------------------------------------- /doc/mod_channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/mod_channels.png -------------------------------------------------------------------------------- /doc/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/protocol.txt -------------------------------------------------------------------------------- /doc/texture_packs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/texture_packs.md -------------------------------------------------------------------------------- /doc/world_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/doc/world_format.md -------------------------------------------------------------------------------- /fonts/Archivo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Archivo-Bold.ttf -------------------------------------------------------------------------------- /fonts/Archivo-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Archivo-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Archivo-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Archivo-Italic.ttf -------------------------------------------------------------------------------- /fonts/Archivo-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Archivo-LICENSE.txt -------------------------------------------------------------------------------- /fonts/Archivo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Archivo-Regular.ttf -------------------------------------------------------------------------------- /fonts/Cousine-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Cousine-Bold.ttf -------------------------------------------------------------------------------- /fonts/Cousine-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Cousine-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Cousine-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Cousine-Italic.ttf -------------------------------------------------------------------------------- /fonts/Cousine-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Cousine-LICENSE.txt -------------------------------------------------------------------------------- /fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /games/devtest/.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/games/devtest/.luacheckrc -------------------------------------------------------------------------------- /games/devtest/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/games/devtest/LICENSE.txt -------------------------------------------------------------------------------- /games/devtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/games/devtest/README.md -------------------------------------------------------------------------------- /games/devtest/game.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/games/devtest/game.conf -------------------------------------------------------------------------------- /games/devtest/menu/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/games/devtest/menu/icon.png -------------------------------------------------------------------------------- /games/devtest/mods/gltf/invalid/empty.gltf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/devtest/mods/gltf/invalid/json_missing_brace.gltf: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /games/devtest/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/games/devtest/screenshot.png -------------------------------------------------------------------------------- /irr/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/.editorconfig -------------------------------------------------------------------------------- /irr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/.gitignore -------------------------------------------------------------------------------- /irr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/CMakeLists.txt -------------------------------------------------------------------------------- /irr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/LICENSE -------------------------------------------------------------------------------- /irr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/README.md -------------------------------------------------------------------------------- /irr/include/CIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/CIndexBuffer.h -------------------------------------------------------------------------------- /irr/include/CMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/CMeshBuffer.h -------------------------------------------------------------------------------- /irr/include/CVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/CVertexBuffer.h -------------------------------------------------------------------------------- /irr/include/EAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EAttributes.h -------------------------------------------------------------------------------- /irr/include/ECullingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ECullingTypes.h -------------------------------------------------------------------------------- /irr/include/EDeviceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EDeviceTypes.h -------------------------------------------------------------------------------- /irr/include/EDriverTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EDriverTypes.h -------------------------------------------------------------------------------- /irr/include/EFocusFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EFocusFlags.h -------------------------------------------------------------------------------- /irr/include/EGUIAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EGUIAlignment.h -------------------------------------------------------------------------------- /irr/include/EMaterialProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EMaterialProps.h -------------------------------------------------------------------------------- /irr/include/EMaterialTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EMaterialTypes.h -------------------------------------------------------------------------------- /irr/include/EReadFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EReadFileType.h -------------------------------------------------------------------------------- /irr/include/EShaderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EShaderTypes.h -------------------------------------------------------------------------------- /irr/include/EVideoTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/EVideoTypes.h -------------------------------------------------------------------------------- /irr/include/IAnimatedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IAnimatedMesh.h -------------------------------------------------------------------------------- /irr/include/IAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IAttributes.h -------------------------------------------------------------------------------- /irr/include/IBoneSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IBoneSceneNode.h -------------------------------------------------------------------------------- /irr/include/ICursorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ICursorControl.h -------------------------------------------------------------------------------- /irr/include/IEventReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IEventReceiver.h -------------------------------------------------------------------------------- /irr/include/IFileArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IFileArchive.h -------------------------------------------------------------------------------- /irr/include/IFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IFileList.h -------------------------------------------------------------------------------- /irr/include/IFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IFileSystem.h -------------------------------------------------------------------------------- /irr/include/IGUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIButton.h -------------------------------------------------------------------------------- /irr/include/IGUICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUICheckBox.h -------------------------------------------------------------------------------- /irr/include/IGUIComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIComboBox.h -------------------------------------------------------------------------------- /irr/include/IGUIEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIEditBox.h -------------------------------------------------------------------------------- /irr/include/IGUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIElement.h -------------------------------------------------------------------------------- /irr/include/IGUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIFont.h -------------------------------------------------------------------------------- /irr/include/IGUIFontBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIFontBitmap.h -------------------------------------------------------------------------------- /irr/include/IGUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIImage.h -------------------------------------------------------------------------------- /irr/include/IGUIImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIImageList.h -------------------------------------------------------------------------------- /irr/include/IGUIListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIListBox.h -------------------------------------------------------------------------------- /irr/include/IGUIScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIScrollBar.h -------------------------------------------------------------------------------- /irr/include/IGUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUISkin.h -------------------------------------------------------------------------------- /irr/include/IGUISpriteBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUISpriteBank.h -------------------------------------------------------------------------------- /irr/include/IGUIStaticText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIStaticText.h -------------------------------------------------------------------------------- /irr/include/IGUITabControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUITabControl.h -------------------------------------------------------------------------------- /irr/include/IGUIToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IGUIToolbar.h -------------------------------------------------------------------------------- /irr/include/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IImage.h -------------------------------------------------------------------------------- /irr/include/IImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IImageLoader.h -------------------------------------------------------------------------------- /irr/include/IImageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IImageWriter.h -------------------------------------------------------------------------------- /irr/include/IIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IIndexBuffer.h -------------------------------------------------------------------------------- /irr/include/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ILogger.h -------------------------------------------------------------------------------- /irr/include/IMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IMesh.h -------------------------------------------------------------------------------- /irr/include/IMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IMeshBuffer.h -------------------------------------------------------------------------------- /irr/include/IMeshCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IMeshCache.h -------------------------------------------------------------------------------- /irr/include/IMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IMeshLoader.h -------------------------------------------------------------------------------- /irr/include/IMeshSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IMeshSceneNode.h -------------------------------------------------------------------------------- /irr/include/IOSOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IOSOperator.h -------------------------------------------------------------------------------- /irr/include/IReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IReadFile.h -------------------------------------------------------------------------------- /irr/include/IRenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IRenderTarget.h -------------------------------------------------------------------------------- /irr/include/ISceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ISceneManager.h -------------------------------------------------------------------------------- /irr/include/ISceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ISceneNode.h -------------------------------------------------------------------------------- /irr/include/ISkinnedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ISkinnedMesh.h -------------------------------------------------------------------------------- /irr/include/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ITexture.h -------------------------------------------------------------------------------- /irr/include/ITimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/ITimer.h -------------------------------------------------------------------------------- /irr/include/IVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IVertexBuffer.h -------------------------------------------------------------------------------- /irr/include/IVideoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IVideoDriver.h -------------------------------------------------------------------------------- /irr/include/IWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IWriteFile.h -------------------------------------------------------------------------------- /irr/include/IrrlichtDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/IrrlichtDevice.h -------------------------------------------------------------------------------- /irr/include/Keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/Keycodes.h -------------------------------------------------------------------------------- /irr/include/S3DVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/S3DVertex.h -------------------------------------------------------------------------------- /irr/include/SAnimatedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SAnimatedMesh.h -------------------------------------------------------------------------------- /irr/include/SColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SColor.h -------------------------------------------------------------------------------- /irr/include/SMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SMaterial.h -------------------------------------------------------------------------------- /irr/include/SMaterialLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SMaterialLayer.h -------------------------------------------------------------------------------- /irr/include/SMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SMesh.h -------------------------------------------------------------------------------- /irr/include/SMeshBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SMeshBuffer.h -------------------------------------------------------------------------------- /irr/include/SVertexIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SVertexIndex.h -------------------------------------------------------------------------------- /irr/include/SViewFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/SViewFrustum.h -------------------------------------------------------------------------------- /irr/include/aabbox3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/aabbox3d.h -------------------------------------------------------------------------------- /irr/include/coreutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/coreutil.h -------------------------------------------------------------------------------- /irr/include/dimension2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/dimension2d.h -------------------------------------------------------------------------------- /irr/include/exampleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/exampleHelper.h -------------------------------------------------------------------------------- /irr/include/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/fast_atof.h -------------------------------------------------------------------------------- /irr/include/irrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrArray.h -------------------------------------------------------------------------------- /irr/include/irrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrMath.h -------------------------------------------------------------------------------- /irr/include/irrString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrString.h -------------------------------------------------------------------------------- /irr/include/irrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrTypes.h -------------------------------------------------------------------------------- /irr/include/irr_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irr_ptr.h -------------------------------------------------------------------------------- /irr/include/irrlicht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrlicht.h -------------------------------------------------------------------------------- /irr/include/irrpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrpack.h -------------------------------------------------------------------------------- /irr/include/irrunpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/irrunpack.h -------------------------------------------------------------------------------- /irr/include/line2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/line2d.h -------------------------------------------------------------------------------- /irr/include/line3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/line3d.h -------------------------------------------------------------------------------- /irr/include/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/matrix4.h -------------------------------------------------------------------------------- /irr/include/mt_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/mt_opengl.h -------------------------------------------------------------------------------- /irr/include/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/path.h -------------------------------------------------------------------------------- /irr/include/plane3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/plane3d.h -------------------------------------------------------------------------------- /irr/include/position2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/position2d.h -------------------------------------------------------------------------------- /irr/include/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/quaternion.h -------------------------------------------------------------------------------- /irr/include/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/rect.h -------------------------------------------------------------------------------- /irr/include/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/vector2d.h -------------------------------------------------------------------------------- /irr/include/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/include/vector3d.h -------------------------------------------------------------------------------- /irr/src/BuiltInFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/BuiltInFont.h -------------------------------------------------------------------------------- /irr/src/CAttributeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CAttributeImpl.h -------------------------------------------------------------------------------- /irr/src/CAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CAttributes.cpp -------------------------------------------------------------------------------- /irr/src/CAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CAttributes.h -------------------------------------------------------------------------------- /irr/src/CB3DMeshFileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CB3DMeshFileLoader.h -------------------------------------------------------------------------------- /irr/src/CBlit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CBlit.h -------------------------------------------------------------------------------- /irr/src/CBoneSceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CBoneSceneNode.cpp -------------------------------------------------------------------------------- /irr/src/CBoneSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CBoneSceneNode.h -------------------------------------------------------------------------------- /irr/src/CCameraSceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CCameraSceneNode.cpp -------------------------------------------------------------------------------- /irr/src/CCameraSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CCameraSceneNode.h -------------------------------------------------------------------------------- /irr/src/CColorConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CColorConverter.cpp -------------------------------------------------------------------------------- /irr/src/CColorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CColorConverter.h -------------------------------------------------------------------------------- /irr/src/CEGLManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CEGLManager.cpp -------------------------------------------------------------------------------- /irr/src/CEGLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CEGLManager.h -------------------------------------------------------------------------------- /irr/src/CEmptySceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CEmptySceneNode.cpp -------------------------------------------------------------------------------- /irr/src/CEmptySceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CEmptySceneNode.h -------------------------------------------------------------------------------- /irr/src/CFPSCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CFPSCounter.cpp -------------------------------------------------------------------------------- /irr/src/CFPSCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CFPSCounter.h -------------------------------------------------------------------------------- /irr/src/CFileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CFileList.cpp -------------------------------------------------------------------------------- /irr/src/CFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CFileList.h -------------------------------------------------------------------------------- /irr/src/CFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CFileSystem.cpp -------------------------------------------------------------------------------- /irr/src/CFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CFileSystem.h -------------------------------------------------------------------------------- /irr/src/CGLXManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGLXManager.cpp -------------------------------------------------------------------------------- /irr/src/CGLXManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGLXManager.h -------------------------------------------------------------------------------- /irr/src/CGUIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIButton.cpp -------------------------------------------------------------------------------- /irr/src/CGUIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIButton.h -------------------------------------------------------------------------------- /irr/src/CGUICheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUICheckBox.cpp -------------------------------------------------------------------------------- /irr/src/CGUICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUICheckBox.h -------------------------------------------------------------------------------- /irr/src/CGUIComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIComboBox.cpp -------------------------------------------------------------------------------- /irr/src/CGUIComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIComboBox.h -------------------------------------------------------------------------------- /irr/src/CGUIEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIEditBox.cpp -------------------------------------------------------------------------------- /irr/src/CGUIEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIEditBox.h -------------------------------------------------------------------------------- /irr/src/CGUIEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIEnvironment.cpp -------------------------------------------------------------------------------- /irr/src/CGUIEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIEnvironment.h -------------------------------------------------------------------------------- /irr/src/CGUIFileOpenDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIFileOpenDialog.h -------------------------------------------------------------------------------- /irr/src/CGUIFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIFont.cpp -------------------------------------------------------------------------------- /irr/src/CGUIFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIFont.h -------------------------------------------------------------------------------- /irr/src/CGUIImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIImage.cpp -------------------------------------------------------------------------------- /irr/src/CGUIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIImage.h -------------------------------------------------------------------------------- /irr/src/CGUIImageList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIImageList.cpp -------------------------------------------------------------------------------- /irr/src/CGUIImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIImageList.h -------------------------------------------------------------------------------- /irr/src/CGUIListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIListBox.cpp -------------------------------------------------------------------------------- /irr/src/CGUIListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIListBox.h -------------------------------------------------------------------------------- /irr/src/CGUIScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIScrollBar.cpp -------------------------------------------------------------------------------- /irr/src/CGUIScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIScrollBar.h -------------------------------------------------------------------------------- /irr/src/CGUISkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUISkin.cpp -------------------------------------------------------------------------------- /irr/src/CGUISkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUISkin.h -------------------------------------------------------------------------------- /irr/src/CGUISpriteBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUISpriteBank.cpp -------------------------------------------------------------------------------- /irr/src/CGUISpriteBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUISpriteBank.h -------------------------------------------------------------------------------- /irr/src/CGUIStaticText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIStaticText.cpp -------------------------------------------------------------------------------- /irr/src/CGUIStaticText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUIStaticText.h -------------------------------------------------------------------------------- /irr/src/CGUITabControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUITabControl.cpp -------------------------------------------------------------------------------- /irr/src/CGUITabControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CGUITabControl.h -------------------------------------------------------------------------------- /irr/src/CImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImage.cpp -------------------------------------------------------------------------------- /irr/src/CImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImage.h -------------------------------------------------------------------------------- /irr/src/CImageLoaderBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderBMP.cpp -------------------------------------------------------------------------------- /irr/src/CImageLoaderBMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderBMP.h -------------------------------------------------------------------------------- /irr/src/CImageLoaderJPG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderJPG.cpp -------------------------------------------------------------------------------- /irr/src/CImageLoaderJPG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderJPG.h -------------------------------------------------------------------------------- /irr/src/CImageLoaderPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderPNG.cpp -------------------------------------------------------------------------------- /irr/src/CImageLoaderPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderPNG.h -------------------------------------------------------------------------------- /irr/src/CImageLoaderTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderTGA.cpp -------------------------------------------------------------------------------- /irr/src/CImageLoaderTGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageLoaderTGA.h -------------------------------------------------------------------------------- /irr/src/CImageWriterJPG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageWriterJPG.cpp -------------------------------------------------------------------------------- /irr/src/CImageWriterJPG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageWriterJPG.h -------------------------------------------------------------------------------- /irr/src/CImageWriterPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageWriterPNG.cpp -------------------------------------------------------------------------------- /irr/src/CImageWriterPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CImageWriterPNG.h -------------------------------------------------------------------------------- /irr/src/CIrrDeviceLinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceLinux.cpp -------------------------------------------------------------------------------- /irr/src/CIrrDeviceLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceLinux.h -------------------------------------------------------------------------------- /irr/src/CIrrDeviceOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceOSX.h -------------------------------------------------------------------------------- /irr/src/CIrrDeviceOSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceOSX.mm -------------------------------------------------------------------------------- /irr/src/CIrrDeviceSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceSDL.cpp -------------------------------------------------------------------------------- /irr/src/CIrrDeviceSDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceSDL.h -------------------------------------------------------------------------------- /irr/src/CIrrDeviceStub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceStub.cpp -------------------------------------------------------------------------------- /irr/src/CIrrDeviceStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceStub.h -------------------------------------------------------------------------------- /irr/src/CIrrDeviceWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceWin32.cpp -------------------------------------------------------------------------------- /irr/src/CIrrDeviceWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CIrrDeviceWin32.h -------------------------------------------------------------------------------- /irr/src/CLimitReadFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CLimitReadFile.cpp -------------------------------------------------------------------------------- /irr/src/CLimitReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CLimitReadFile.h -------------------------------------------------------------------------------- /irr/src/CLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CLogger.cpp -------------------------------------------------------------------------------- /irr/src/CLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CLogger.h -------------------------------------------------------------------------------- /irr/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMakeLists.txt -------------------------------------------------------------------------------- /irr/src/CMemoryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMemoryFile.cpp -------------------------------------------------------------------------------- /irr/src/CMemoryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMemoryFile.h -------------------------------------------------------------------------------- /irr/src/CMeshCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMeshCache.cpp -------------------------------------------------------------------------------- /irr/src/CMeshCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMeshCache.h -------------------------------------------------------------------------------- /irr/src/CMeshManipulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMeshManipulator.cpp -------------------------------------------------------------------------------- /irr/src/CMeshManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMeshManipulator.h -------------------------------------------------------------------------------- /irr/src/CMeshSceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMeshSceneNode.cpp -------------------------------------------------------------------------------- /irr/src/CMeshSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CMeshSceneNode.h -------------------------------------------------------------------------------- /irr/src/CNSOGLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CNSOGLManager.h -------------------------------------------------------------------------------- /irr/src/CNSOGLManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CNSOGLManager.mm -------------------------------------------------------------------------------- /irr/src/CNullDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CNullDriver.cpp -------------------------------------------------------------------------------- /irr/src/CNullDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CNullDriver.h -------------------------------------------------------------------------------- /irr/src/COBJMeshFileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COBJMeshFileLoader.h -------------------------------------------------------------------------------- /irr/src/COSOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COSOperator.cpp -------------------------------------------------------------------------------- /irr/src/COSOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COSOperator.h -------------------------------------------------------------------------------- /irr/src/COpenGLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COpenGLCommon.h -------------------------------------------------------------------------------- /irr/src/COpenGLCoreFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COpenGLCoreFeature.h -------------------------------------------------------------------------------- /irr/src/COpenGLCoreTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COpenGLCoreTexture.h -------------------------------------------------------------------------------- /irr/src/COpenGLDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COpenGLDriver.cpp -------------------------------------------------------------------------------- /irr/src/COpenGLDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/COpenGLDriver.h -------------------------------------------------------------------------------- /irr/src/CReadFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CReadFile.cpp -------------------------------------------------------------------------------- /irr/src/CReadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CReadFile.h -------------------------------------------------------------------------------- /irr/src/CSDLManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CSDLManager.cpp -------------------------------------------------------------------------------- /irr/src/CSDLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CSDLManager.h -------------------------------------------------------------------------------- /irr/src/CSceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CSceneManager.cpp -------------------------------------------------------------------------------- /irr/src/CSceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CSceneManager.h -------------------------------------------------------------------------------- /irr/src/CSkinnedMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CSkinnedMesh.cpp -------------------------------------------------------------------------------- /irr/src/CSkinnedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CSkinnedMesh.h -------------------------------------------------------------------------------- /irr/src/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CTimer.h -------------------------------------------------------------------------------- /irr/src/CWGLManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CWGLManager.cpp -------------------------------------------------------------------------------- /irr/src/CWGLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CWGLManager.h -------------------------------------------------------------------------------- /irr/src/CWriteFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CWriteFile.cpp -------------------------------------------------------------------------------- /irr/src/CWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CWriteFile.h -------------------------------------------------------------------------------- /irr/src/CXMeshFileLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CXMeshFileLoader.cpp -------------------------------------------------------------------------------- /irr/src/CXMeshFileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CXMeshFileLoader.h -------------------------------------------------------------------------------- /irr/src/CZipReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CZipReader.cpp -------------------------------------------------------------------------------- /irr/src/CZipReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/CZipReader.h -------------------------------------------------------------------------------- /irr/src/IAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/IAttribute.h -------------------------------------------------------------------------------- /irr/src/Irrlicht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/Irrlicht.cpp -------------------------------------------------------------------------------- /irr/src/OpenGL/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/OpenGL/Common.h -------------------------------------------------------------------------------- /irr/src/OpenGL/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/OpenGL/Driver.cpp -------------------------------------------------------------------------------- /irr/src/OpenGL/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/OpenGL/Driver.h -------------------------------------------------------------------------------- /irr/src/OpenGL/Renderer2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/OpenGL/Renderer2D.h -------------------------------------------------------------------------------- /irr/src/OpenGL3/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/OpenGL3/Driver.cpp -------------------------------------------------------------------------------- /irr/src/OpenGL3/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/OpenGL3/Driver.h -------------------------------------------------------------------------------- /irr/src/SB3DStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/SB3DStructs.h -------------------------------------------------------------------------------- /irr/src/builtInFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/builtInFont.png -------------------------------------------------------------------------------- /irr/src/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/os.cpp -------------------------------------------------------------------------------- /irr/src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/os.h -------------------------------------------------------------------------------- /irr/src/vendor/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/vendor/gl.h -------------------------------------------------------------------------------- /irr/src/vendor/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/irr/src/vendor/glext.h -------------------------------------------------------------------------------- /lib/bitop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/bitop/CMakeLists.txt -------------------------------------------------------------------------------- /lib/bitop/bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/bitop/bit.cpp -------------------------------------------------------------------------------- /lib/bitop/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/bitop/bit.h -------------------------------------------------------------------------------- /lib/catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/catch2/CMakeLists.txt -------------------------------------------------------------------------------- /lib/gmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/gmp/CMakeLists.txt -------------------------------------------------------------------------------- /lib/gmp/mini-gmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/gmp/mini-gmp.c -------------------------------------------------------------------------------- /lib/gmp/mini-gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/gmp/mini-gmp.h -------------------------------------------------------------------------------- /lib/jsoncpp/json/UPDATING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/jsoncpp/json/UPDATING -------------------------------------------------------------------------------- /lib/jsoncpp/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/jsoncpp/json/json.h -------------------------------------------------------------------------------- /lib/jsoncpp/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/jsoncpp/jsoncpp.cpp -------------------------------------------------------------------------------- /lib/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/COPYRIGHT -------------------------------------------------------------------------------- /lib/lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/README.md -------------------------------------------------------------------------------- /lib/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lapi.c -------------------------------------------------------------------------------- /lib/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lapi.h -------------------------------------------------------------------------------- /lib/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lauxlib.c -------------------------------------------------------------------------------- /lib/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lauxlib.h -------------------------------------------------------------------------------- /lib/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lbaselib.c -------------------------------------------------------------------------------- /lib/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lcode.c -------------------------------------------------------------------------------- /lib/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lcode.h -------------------------------------------------------------------------------- /lib/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ldblib.c -------------------------------------------------------------------------------- /lib/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ldebug.c -------------------------------------------------------------------------------- /lib/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ldebug.h -------------------------------------------------------------------------------- /lib/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ldo.c -------------------------------------------------------------------------------- /lib/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ldo.h -------------------------------------------------------------------------------- /lib/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ldump.c -------------------------------------------------------------------------------- /lib/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lfunc.c -------------------------------------------------------------------------------- /lib/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lfunc.h -------------------------------------------------------------------------------- /lib/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lgc.c -------------------------------------------------------------------------------- /lib/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lgc.h -------------------------------------------------------------------------------- /lib/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/linit.c -------------------------------------------------------------------------------- /lib/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/liolib.c -------------------------------------------------------------------------------- /lib/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/llex.c -------------------------------------------------------------------------------- /lib/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/llex.h -------------------------------------------------------------------------------- /lib/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/llimits.h -------------------------------------------------------------------------------- /lib/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lmathlib.c -------------------------------------------------------------------------------- /lib/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lmem.c -------------------------------------------------------------------------------- /lib/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lmem.h -------------------------------------------------------------------------------- /lib/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/loadlib.c -------------------------------------------------------------------------------- /lib/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lobject.c -------------------------------------------------------------------------------- /lib/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lobject.h -------------------------------------------------------------------------------- /lib/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lopcodes.c -------------------------------------------------------------------------------- /lib/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lopcodes.h -------------------------------------------------------------------------------- /lib/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/loslib.c -------------------------------------------------------------------------------- /lib/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lparser.c -------------------------------------------------------------------------------- /lib/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lparser.h -------------------------------------------------------------------------------- /lib/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lstate.c -------------------------------------------------------------------------------- /lib/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lstate.h -------------------------------------------------------------------------------- /lib/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lstring.c -------------------------------------------------------------------------------- /lib/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lstring.h -------------------------------------------------------------------------------- /lib/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lstrlib.c -------------------------------------------------------------------------------- /lib/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ltable.c -------------------------------------------------------------------------------- /lib/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ltable.h -------------------------------------------------------------------------------- /lib/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ltablib.c -------------------------------------------------------------------------------- /lib/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ltm.c -------------------------------------------------------------------------------- /lib/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/ltm.h -------------------------------------------------------------------------------- /lib/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lua.c -------------------------------------------------------------------------------- /lib/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lua.h -------------------------------------------------------------------------------- /lib/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/luac.c -------------------------------------------------------------------------------- /lib/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/luaconf.h -------------------------------------------------------------------------------- /lib/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lualib.h -------------------------------------------------------------------------------- /lib/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lundump.c -------------------------------------------------------------------------------- /lib/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lundump.h -------------------------------------------------------------------------------- /lib/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lvm.c -------------------------------------------------------------------------------- /lib/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lvm.h -------------------------------------------------------------------------------- /lib/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lzio.c -------------------------------------------------------------------------------- /lib/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/lzio.h -------------------------------------------------------------------------------- /lib/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/lua/src/print.c -------------------------------------------------------------------------------- /lib/sha256/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/sha256/CMakeLists.txt -------------------------------------------------------------------------------- /lib/sha256/my_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/sha256/my_sha256.h -------------------------------------------------------------------------------- /lib/sha256/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/sha256/sha256.c -------------------------------------------------------------------------------- /lib/tiniergltf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/tiniergltf/.gitignore -------------------------------------------------------------------------------- /lib/tiniergltf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/lib/tiniergltf/Readme.md -------------------------------------------------------------------------------- /minetest.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/minetest.conf.example -------------------------------------------------------------------------------- /misc/AppImageBuilder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/AppImageBuilder.yml -------------------------------------------------------------------------------- /misc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/Info.plist -------------------------------------------------------------------------------- /misc/luanti-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/luanti-icon.icns -------------------------------------------------------------------------------- /misc/luanti-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/luanti-icon.ico -------------------------------------------------------------------------------- /misc/luanti.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/luanti.exe.manifest -------------------------------------------------------------------------------- /misc/luanti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/luanti.svg -------------------------------------------------------------------------------- /misc/make_redirects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/make_redirects.sh -------------------------------------------------------------------------------- /misc/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/redirect.html -------------------------------------------------------------------------------- /misc/winresource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/misc/winresource.rc -------------------------------------------------------------------------------- /mods/mods_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/mods/mods_here.txt -------------------------------------------------------------------------------- /po/ar/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ar/luanti.po -------------------------------------------------------------------------------- /po/be/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/be/luanti.po -------------------------------------------------------------------------------- /po/bg/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/bg/luanti.po -------------------------------------------------------------------------------- /po/ca/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ca/luanti.po -------------------------------------------------------------------------------- /po/cs/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/cs/luanti.po -------------------------------------------------------------------------------- /po/cy/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/cy/luanti.po -------------------------------------------------------------------------------- /po/da/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/da/luanti.po -------------------------------------------------------------------------------- /po/de/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/de/luanti.po -------------------------------------------------------------------------------- /po/dv/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/dv/luanti.po -------------------------------------------------------------------------------- /po/el/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/el/luanti.po -------------------------------------------------------------------------------- /po/eo/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/eo/luanti.po -------------------------------------------------------------------------------- /po/es/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/es/luanti.po -------------------------------------------------------------------------------- /po/et/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/et/luanti.po -------------------------------------------------------------------------------- /po/eu/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/eu/luanti.po -------------------------------------------------------------------------------- /po/fa/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/fa/luanti.po -------------------------------------------------------------------------------- /po/fi/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/fi/luanti.po -------------------------------------------------------------------------------- /po/fil/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/fil/luanti.po -------------------------------------------------------------------------------- /po/fr/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/fr/luanti.po -------------------------------------------------------------------------------- /po/ga/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ga/luanti.po -------------------------------------------------------------------------------- /po/gd/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/gd/luanti.po -------------------------------------------------------------------------------- /po/gl/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/gl/luanti.po -------------------------------------------------------------------------------- /po/he/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/he/luanti.po -------------------------------------------------------------------------------- /po/hi/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/hi/luanti.po -------------------------------------------------------------------------------- /po/hu/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/hu/luanti.po -------------------------------------------------------------------------------- /po/ia/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ia/luanti.po -------------------------------------------------------------------------------- /po/id/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/id/luanti.po -------------------------------------------------------------------------------- /po/it/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/it/luanti.po -------------------------------------------------------------------------------- /po/ja/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ja/luanti.po -------------------------------------------------------------------------------- /po/jbo/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/jbo/luanti.po -------------------------------------------------------------------------------- /po/jv/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/jv/luanti.po -------------------------------------------------------------------------------- /po/kk/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/kk/luanti.po -------------------------------------------------------------------------------- /po/kn/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/kn/luanti.po -------------------------------------------------------------------------------- /po/ko/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ko/luanti.po -------------------------------------------------------------------------------- /po/kv/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/kv/luanti.po -------------------------------------------------------------------------------- /po/ky/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ky/luanti.po -------------------------------------------------------------------------------- /po/lt/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/lt/luanti.po -------------------------------------------------------------------------------- /po/luanti.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/luanti.pot -------------------------------------------------------------------------------- /po/lv/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/lv/luanti.po -------------------------------------------------------------------------------- /po/lzh/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/lzh/luanti.po -------------------------------------------------------------------------------- /po/mi/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/mi/luanti.po -------------------------------------------------------------------------------- /po/mn/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/mn/luanti.po -------------------------------------------------------------------------------- /po/mr/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/mr/luanti.po -------------------------------------------------------------------------------- /po/ms/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ms/luanti.po -------------------------------------------------------------------------------- /po/ms_Arab/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ms_Arab/luanti.po -------------------------------------------------------------------------------- /po/nb/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/nb/luanti.po -------------------------------------------------------------------------------- /po/nl/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/nl/luanti.po -------------------------------------------------------------------------------- /po/nn/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/nn/luanti.po -------------------------------------------------------------------------------- /po/oc/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/oc/luanti.po -------------------------------------------------------------------------------- /po/pl/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/pl/luanti.po -------------------------------------------------------------------------------- /po/pt/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/pt/luanti.po -------------------------------------------------------------------------------- /po/pt_BR/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/pt_BR/luanti.po -------------------------------------------------------------------------------- /po/ro/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ro/luanti.po -------------------------------------------------------------------------------- /po/ru/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/ru/luanti.po -------------------------------------------------------------------------------- /po/sk/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/sk/luanti.po -------------------------------------------------------------------------------- /po/sl/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/sl/luanti.po -------------------------------------------------------------------------------- /po/sr_Cyrl/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/sr_Cyrl/luanti.po -------------------------------------------------------------------------------- /po/sr_Latn/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/sr_Latn/luanti.po -------------------------------------------------------------------------------- /po/sv/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/sv/luanti.po -------------------------------------------------------------------------------- /po/sw/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/sw/luanti.po -------------------------------------------------------------------------------- /po/th/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/th/luanti.po -------------------------------------------------------------------------------- /po/tok/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/tok/luanti.po -------------------------------------------------------------------------------- /po/tr/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/tr/luanti.po -------------------------------------------------------------------------------- /po/tt/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/tt/luanti.po -------------------------------------------------------------------------------- /po/uk/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/uk/luanti.po -------------------------------------------------------------------------------- /po/vi/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/vi/luanti.po -------------------------------------------------------------------------------- /po/yue/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/yue/luanti.po -------------------------------------------------------------------------------- /po/zh_CN/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/zh_CN/luanti.po -------------------------------------------------------------------------------- /po/zh_TW/luanti.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/po/zh_TW/luanti.po -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/shell.nix -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/activeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/activeobject.h -------------------------------------------------------------------------------- /src/activeobjectmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/activeobjectmgr.h -------------------------------------------------------------------------------- /src/benchmark/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/benchmark/benchmark.h -------------------------------------------------------------------------------- /src/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/catch.cpp -------------------------------------------------------------------------------- /src/catch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/catch.h -------------------------------------------------------------------------------- /src/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/chat.cpp -------------------------------------------------------------------------------- /src/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/chat.h -------------------------------------------------------------------------------- /src/chat_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/chat_interface.h -------------------------------------------------------------------------------- /src/chatmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/chatmessage.h -------------------------------------------------------------------------------- /src/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/CMakeLists.txt -------------------------------------------------------------------------------- /src/client/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/camera.cpp -------------------------------------------------------------------------------- /src/client/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/camera.h -------------------------------------------------------------------------------- /src/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/client.cpp -------------------------------------------------------------------------------- /src/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/client.h -------------------------------------------------------------------------------- /src/client/clientevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clientevent.h -------------------------------------------------------------------------------- /src/client/clientmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clientmap.cpp -------------------------------------------------------------------------------- /src/client/clientmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clientmap.h -------------------------------------------------------------------------------- /src/client/clientmedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clientmedia.h -------------------------------------------------------------------------------- /src/client/clientobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clientobject.h -------------------------------------------------------------------------------- /src/client/clouds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clouds.cpp -------------------------------------------------------------------------------- /src/client/clouds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/clouds.h -------------------------------------------------------------------------------- /src/client/content_cao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/content_cao.h -------------------------------------------------------------------------------- /src/client/content_cso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/content_cso.h -------------------------------------------------------------------------------- /src/client/filecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/filecache.cpp -------------------------------------------------------------------------------- /src/client/filecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/filecache.h -------------------------------------------------------------------------------- /src/client/fontengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/fontengine.cpp -------------------------------------------------------------------------------- /src/client/fontengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/fontengine.h -------------------------------------------------------------------------------- /src/client/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/game.cpp -------------------------------------------------------------------------------- /src/client/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/game.h -------------------------------------------------------------------------------- /src/client/gameui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/gameui.cpp -------------------------------------------------------------------------------- /src/client/gameui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/gameui.h -------------------------------------------------------------------------------- /src/client/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/hud.cpp -------------------------------------------------------------------------------- /src/client/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/hud.h -------------------------------------------------------------------------------- /src/client/imagefilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/imagefilters.h -------------------------------------------------------------------------------- /src/client/imagesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/imagesource.h -------------------------------------------------------------------------------- /src/client/inputhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/inputhandler.h -------------------------------------------------------------------------------- /src/client/keycode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/keycode.cpp -------------------------------------------------------------------------------- /src/client/keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/keycode.h -------------------------------------------------------------------------------- /src/client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/keys.h -------------------------------------------------------------------------------- /src/client/localplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/localplayer.h -------------------------------------------------------------------------------- /src/client/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/mesh.cpp -------------------------------------------------------------------------------- /src/client/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/mesh.h -------------------------------------------------------------------------------- /src/client/minimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/minimap.cpp -------------------------------------------------------------------------------- /src/client/minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/minimap.h -------------------------------------------------------------------------------- /src/client/mtevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/mtevent.h -------------------------------------------------------------------------------- /src/client/particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/particles.cpp -------------------------------------------------------------------------------- /src/client/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/particles.h -------------------------------------------------------------------------------- /src/client/render/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/render/core.h -------------------------------------------------------------------------------- /src/client/render/plain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/render/plain.h -------------------------------------------------------------------------------- /src/client/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/shader.cpp -------------------------------------------------------------------------------- /src/client/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/shader.h -------------------------------------------------------------------------------- /src/client/sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/sky.cpp -------------------------------------------------------------------------------- /src/client/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/sky.h -------------------------------------------------------------------------------- /src/client/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/sound.cpp -------------------------------------------------------------------------------- /src/client/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/sound.h -------------------------------------------------------------------------------- /src/client/texturepaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/texturepaths.h -------------------------------------------------------------------------------- /src/client/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/tile.cpp -------------------------------------------------------------------------------- /src/client/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/tile.h -------------------------------------------------------------------------------- /src/client/wieldmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/wieldmesh.cpp -------------------------------------------------------------------------------- /src/client/wieldmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/client/wieldmesh.h -------------------------------------------------------------------------------- /src/clientdynamicinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/clientdynamicinfo.cpp -------------------------------------------------------------------------------- /src/clientdynamicinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/clientdynamicinfo.h -------------------------------------------------------------------------------- /src/cmake_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/cmake_config.h.in -------------------------------------------------------------------------------- /src/collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/collision.cpp -------------------------------------------------------------------------------- /src/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/collision.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/config.h -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/content/content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content/content.cpp -------------------------------------------------------------------------------- /src/content/content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content/content.h -------------------------------------------------------------------------------- /src/content/mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content/mods.cpp -------------------------------------------------------------------------------- /src/content/mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content/mods.h -------------------------------------------------------------------------------- /src/content/subgames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content/subgames.cpp -------------------------------------------------------------------------------- /src/content/subgames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content/subgames.h -------------------------------------------------------------------------------- /src/content_mapnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content_mapnode.cpp -------------------------------------------------------------------------------- /src/content_mapnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content_mapnode.h -------------------------------------------------------------------------------- /src/content_nodemeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content_nodemeta.cpp -------------------------------------------------------------------------------- /src/content_nodemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/content_nodemeta.h -------------------------------------------------------------------------------- /src/convert_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/convert_json.cpp -------------------------------------------------------------------------------- /src/convert_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/convert_json.h -------------------------------------------------------------------------------- /src/craftdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/craftdef.cpp -------------------------------------------------------------------------------- /src/craftdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/craftdef.h -------------------------------------------------------------------------------- /src/database/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/database/database.cpp -------------------------------------------------------------------------------- /src/database/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/database/database.h -------------------------------------------------------------------------------- /src/daynightratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/daynightratio.h -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/defaultsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/defaultsettings.cpp -------------------------------------------------------------------------------- /src/defaultsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/defaultsettings.h -------------------------------------------------------------------------------- /src/dummygamedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/dummygamedef.h -------------------------------------------------------------------------------- /src/dummymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/dummymap.h -------------------------------------------------------------------------------- /src/emerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/emerge.cpp -------------------------------------------------------------------------------- /src/emerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/emerge.h -------------------------------------------------------------------------------- /src/emerge_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/emerge_internal.h -------------------------------------------------------------------------------- /src/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/environment.cpp -------------------------------------------------------------------------------- /src/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/environment.h -------------------------------------------------------------------------------- /src/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/exceptions.h -------------------------------------------------------------------------------- /src/face_position_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/face_position_cache.h -------------------------------------------------------------------------------- /src/filesys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/filesys.cpp -------------------------------------------------------------------------------- /src/filesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/filesys.h -------------------------------------------------------------------------------- /src/gamedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gamedef.h -------------------------------------------------------------------------------- /src/gameparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gameparams.h -------------------------------------------------------------------------------- /src/gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gettext.cpp -------------------------------------------------------------------------------- /src/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gettext.h -------------------------------------------------------------------------------- /src/gettext_plural_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gettext_plural_form.h -------------------------------------------------------------------------------- /src/gettime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gettime.h -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/StyleSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/StyleSpec.h -------------------------------------------------------------------------------- /src/gui/guiBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiBox.cpp -------------------------------------------------------------------------------- /src/gui/guiBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiBox.h -------------------------------------------------------------------------------- /src/gui/guiButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiButton.cpp -------------------------------------------------------------------------------- /src/gui/guiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiButton.h -------------------------------------------------------------------------------- /src/gui/guiButtonImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiButtonImage.h -------------------------------------------------------------------------------- /src/gui/guiChatConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiChatConsole.h -------------------------------------------------------------------------------- /src/gui/guiEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiEditBox.cpp -------------------------------------------------------------------------------- /src/gui/guiEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiEditBox.h -------------------------------------------------------------------------------- /src/gui/guiEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiEngine.cpp -------------------------------------------------------------------------------- /src/gui/guiEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiEngine.h -------------------------------------------------------------------------------- /src/gui/guiFormSpecMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiFormSpecMenu.h -------------------------------------------------------------------------------- /src/gui/guiHyperText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiHyperText.cpp -------------------------------------------------------------------------------- /src/gui/guiHyperText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiHyperText.h -------------------------------------------------------------------------------- /src/gui/guiItemImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiItemImage.cpp -------------------------------------------------------------------------------- /src/gui/guiItemImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiItemImage.h -------------------------------------------------------------------------------- /src/gui/guiMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiMainMenu.h -------------------------------------------------------------------------------- /src/gui/guiOpenURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiOpenURL.cpp -------------------------------------------------------------------------------- /src/gui/guiOpenURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiOpenURL.h -------------------------------------------------------------------------------- /src/gui/guiScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiScene.cpp -------------------------------------------------------------------------------- /src/gui/guiScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiScene.h -------------------------------------------------------------------------------- /src/gui/guiScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiScrollBar.cpp -------------------------------------------------------------------------------- /src/gui/guiScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiScrollBar.h -------------------------------------------------------------------------------- /src/gui/guiSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiSkin.cpp -------------------------------------------------------------------------------- /src/gui/guiTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiTable.cpp -------------------------------------------------------------------------------- /src/gui/guiTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiTable.h -------------------------------------------------------------------------------- /src/gui/guiVolumeChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/guiVolumeChange.h -------------------------------------------------------------------------------- /src/gui/mainmenumanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/mainmenumanager.h -------------------------------------------------------------------------------- /src/gui/modalMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/modalMenu.cpp -------------------------------------------------------------------------------- /src/gui/modalMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/modalMenu.h -------------------------------------------------------------------------------- /src/gui/profilergraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/profilergraph.cpp -------------------------------------------------------------------------------- /src/gui/profilergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/profilergraph.h -------------------------------------------------------------------------------- /src/gui/touchcontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/touchcontrols.cpp -------------------------------------------------------------------------------- /src/gui/touchcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/gui/touchcontrols.h -------------------------------------------------------------------------------- /src/httpfetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/httpfetch.cpp -------------------------------------------------------------------------------- /src/httpfetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/httpfetch.h -------------------------------------------------------------------------------- /src/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/hud.cpp -------------------------------------------------------------------------------- /src/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/hud.h -------------------------------------------------------------------------------- /src/inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/inventory.cpp -------------------------------------------------------------------------------- /src/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/inventory.h -------------------------------------------------------------------------------- /src/inventorymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/inventorymanager.cpp -------------------------------------------------------------------------------- /src/inventorymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/inventorymanager.h -------------------------------------------------------------------------------- /src/irr_aabb3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/irr_aabb3d.h -------------------------------------------------------------------------------- /src/irr_v2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/irr_v2d.h -------------------------------------------------------------------------------- /src/irr_v3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/irr_v3d.h -------------------------------------------------------------------------------- /src/irrlichttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/irrlichttypes.h -------------------------------------------------------------------------------- /src/itemdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/itemdef.cpp -------------------------------------------------------------------------------- /src/itemdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/itemdef.h -------------------------------------------------------------------------------- /src/itemgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/itemgroup.h -------------------------------------------------------------------------------- /src/itemstackmetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/itemstackmetadata.cpp -------------------------------------------------------------------------------- /src/itemstackmetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/itemstackmetadata.h -------------------------------------------------------------------------------- /src/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/json-forwards.h -------------------------------------------------------------------------------- /src/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/light.cpp -------------------------------------------------------------------------------- /src/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/light.h -------------------------------------------------------------------------------- /src/lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/lighting.cpp -------------------------------------------------------------------------------- /src/lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/lighting.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/log.h -------------------------------------------------------------------------------- /src/log_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/log_internal.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/map.h -------------------------------------------------------------------------------- /src/mapblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapblock.cpp -------------------------------------------------------------------------------- /src/mapblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapblock.h -------------------------------------------------------------------------------- /src/mapgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/CMakeLists.txt -------------------------------------------------------------------------------- /src/mapgen/cavegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/cavegen.cpp -------------------------------------------------------------------------------- /src/mapgen/cavegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/cavegen.h -------------------------------------------------------------------------------- /src/mapgen/dungeongen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/dungeongen.cpp -------------------------------------------------------------------------------- /src/mapgen/dungeongen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/dungeongen.h -------------------------------------------------------------------------------- /src/mapgen/mapgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen.cpp -------------------------------------------------------------------------------- /src/mapgen/mapgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen.h -------------------------------------------------------------------------------- /src/mapgen/mapgen_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_flat.h -------------------------------------------------------------------------------- /src/mapgen/mapgen_v5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_v5.cpp -------------------------------------------------------------------------------- /src/mapgen/mapgen_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_v5.h -------------------------------------------------------------------------------- /src/mapgen/mapgen_v6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_v6.cpp -------------------------------------------------------------------------------- /src/mapgen/mapgen_v6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_v6.h -------------------------------------------------------------------------------- /src/mapgen/mapgen_v7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_v7.cpp -------------------------------------------------------------------------------- /src/mapgen/mapgen_v7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mapgen_v7.h -------------------------------------------------------------------------------- /src/mapgen/mg_biome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mg_biome.cpp -------------------------------------------------------------------------------- /src/mapgen/mg_biome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mg_biome.h -------------------------------------------------------------------------------- /src/mapgen/mg_ore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mg_ore.cpp -------------------------------------------------------------------------------- /src/mapgen/mg_ore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mg_ore.h -------------------------------------------------------------------------------- /src/mapgen/mg_schematic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/mg_schematic.h -------------------------------------------------------------------------------- /src/mapgen/treegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/treegen.cpp -------------------------------------------------------------------------------- /src/mapgen/treegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapgen/treegen.h -------------------------------------------------------------------------------- /src/mapnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapnode.cpp -------------------------------------------------------------------------------- /src/mapnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapnode.h -------------------------------------------------------------------------------- /src/mapsector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapsector.cpp -------------------------------------------------------------------------------- /src/mapsector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/mapsector.h -------------------------------------------------------------------------------- /src/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/metadata.cpp -------------------------------------------------------------------------------- /src/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/metadata.h -------------------------------------------------------------------------------- /src/migratesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/migratesettings.h -------------------------------------------------------------------------------- /src/modchannels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/modchannels.cpp -------------------------------------------------------------------------------- /src/modchannels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/modchannels.h -------------------------------------------------------------------------------- /src/modifiedstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/modifiedstate.h -------------------------------------------------------------------------------- /src/nameidmapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nameidmapping.cpp -------------------------------------------------------------------------------- /src/nameidmapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nameidmapping.h -------------------------------------------------------------------------------- /src/network/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/address.cpp -------------------------------------------------------------------------------- /src/network/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/address.h -------------------------------------------------------------------------------- /src/network/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/connection.h -------------------------------------------------------------------------------- /src/network/mtp/impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/mtp/impl.cpp -------------------------------------------------------------------------------- /src/network/mtp/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/mtp/impl.h -------------------------------------------------------------------------------- /src/network/mtp/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/mtp/threads.h -------------------------------------------------------------------------------- /src/network/peerhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/peerhandler.h -------------------------------------------------------------------------------- /src/network/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/socket.cpp -------------------------------------------------------------------------------- /src/network/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/network/socket.h -------------------------------------------------------------------------------- /src/nodedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nodedef.cpp -------------------------------------------------------------------------------- /src/nodedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nodedef.h -------------------------------------------------------------------------------- /src/nodemetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nodemetadata.cpp -------------------------------------------------------------------------------- /src/nodemetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nodemetadata.h -------------------------------------------------------------------------------- /src/nodetimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nodetimer.cpp -------------------------------------------------------------------------------- /src/nodetimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/nodetimer.h -------------------------------------------------------------------------------- /src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/noise.cpp -------------------------------------------------------------------------------- /src/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/noise.h -------------------------------------------------------------------------------- /src/objdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/objdef.cpp -------------------------------------------------------------------------------- /src/objdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/objdef.h -------------------------------------------------------------------------------- /src/object_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/object_properties.cpp -------------------------------------------------------------------------------- /src/object_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/object_properties.h -------------------------------------------------------------------------------- /src/particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/particles.cpp -------------------------------------------------------------------------------- /src/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/particles.h -------------------------------------------------------------------------------- /src/pathfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/pathfinder.cpp -------------------------------------------------------------------------------- /src/pathfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/pathfinder.h -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/player.h -------------------------------------------------------------------------------- /src/porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/porting.cpp -------------------------------------------------------------------------------- /src/porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/porting.h -------------------------------------------------------------------------------- /src/porting_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/porting_android.cpp -------------------------------------------------------------------------------- /src/porting_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/porting_android.h -------------------------------------------------------------------------------- /src/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/profiler.cpp -------------------------------------------------------------------------------- /src/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/profiler.h -------------------------------------------------------------------------------- /src/raycast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/raycast.cpp -------------------------------------------------------------------------------- /src/raycast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/raycast.h -------------------------------------------------------------------------------- /src/reflowscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/reflowscan.cpp -------------------------------------------------------------------------------- /src/reflowscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/reflowscan.h -------------------------------------------------------------------------------- /src/remoteplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/remoteplayer.cpp -------------------------------------------------------------------------------- /src/remoteplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/remoteplayer.h -------------------------------------------------------------------------------- /src/rollback_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/rollback_interface.h -------------------------------------------------------------------------------- /src/script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/script/CMakeLists.txt -------------------------------------------------------------------------------- /src/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/serialization.cpp -------------------------------------------------------------------------------- /src/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/serialization.h -------------------------------------------------------------------------------- /src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server.cpp -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server.h -------------------------------------------------------------------------------- /src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/ban.cpp -------------------------------------------------------------------------------- /src/server/ban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/ban.h -------------------------------------------------------------------------------- /src/server/clientiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/clientiface.h -------------------------------------------------------------------------------- /src/server/mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/mods.cpp -------------------------------------------------------------------------------- /src/server/mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/mods.h -------------------------------------------------------------------------------- /src/server/player_sao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/player_sao.cpp -------------------------------------------------------------------------------- /src/server/player_sao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/player_sao.h -------------------------------------------------------------------------------- /src/server/rollback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/rollback.cpp -------------------------------------------------------------------------------- /src/server/rollback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/rollback.h -------------------------------------------------------------------------------- /src/server/serverlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/serverlist.cpp -------------------------------------------------------------------------------- /src/server/serverlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/serverlist.h -------------------------------------------------------------------------------- /src/server/unit_sao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/unit_sao.cpp -------------------------------------------------------------------------------- /src/server/unit_sao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/server/unit_sao.h -------------------------------------------------------------------------------- /src/serverenvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/serverenvironment.cpp -------------------------------------------------------------------------------- /src/serverenvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/serverenvironment.h -------------------------------------------------------------------------------- /src/servermap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/servermap.cpp -------------------------------------------------------------------------------- /src/servermap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/servermap.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/skyparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/skyparams.h -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/sound.h -------------------------------------------------------------------------------- /src/staticobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/staticobject.cpp -------------------------------------------------------------------------------- /src/staticobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/staticobject.h -------------------------------------------------------------------------------- /src/texture_override.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/texture_override.cpp -------------------------------------------------------------------------------- /src/texture_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/texture_override.h -------------------------------------------------------------------------------- /src/threading/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/threading/event.cpp -------------------------------------------------------------------------------- /src/threading/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/threading/event.h -------------------------------------------------------------------------------- /src/threading/lambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/threading/lambda.h -------------------------------------------------------------------------------- /src/threading/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/threading/semaphore.h -------------------------------------------------------------------------------- /src/threading/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/threading/thread.cpp -------------------------------------------------------------------------------- /src/threading/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/threading/thread.h -------------------------------------------------------------------------------- /src/tileanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/tileanimation.cpp -------------------------------------------------------------------------------- /src/tileanimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/tileanimation.h -------------------------------------------------------------------------------- /src/tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/tool.cpp -------------------------------------------------------------------------------- /src/tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/tool.h -------------------------------------------------------------------------------- /src/translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/translation.cpp -------------------------------------------------------------------------------- /src/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/translation.h -------------------------------------------------------------------------------- /src/unittest/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/unittest/test.cpp -------------------------------------------------------------------------------- /src/unittest/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/unittest/test.h -------------------------------------------------------------------------------- /src/unittest/test_ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/unittest/test_ban.cpp -------------------------------------------------------------------------------- /src/unittest/test_lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/unittest/test_lua.cpp -------------------------------------------------------------------------------- /src/unittest/test_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/unittest/test_map.cpp -------------------------------------------------------------------------------- /src/unittest/test_sao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/unittest/test_sao.cpp -------------------------------------------------------------------------------- /src/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/areastore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/areastore.cpp -------------------------------------------------------------------------------- /src/util/areastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/areastore.h -------------------------------------------------------------------------------- /src/util/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/auth.cpp -------------------------------------------------------------------------------- /src/util/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/auth.h -------------------------------------------------------------------------------- /src/util/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/base64.cpp -------------------------------------------------------------------------------- /src/util/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/base64.h -------------------------------------------------------------------------------- /src/util/basic_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/basic_macros.h -------------------------------------------------------------------------------- /src/util/colorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/colorize.cpp -------------------------------------------------------------------------------- /src/util/colorize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/colorize.h -------------------------------------------------------------------------------- /src/util/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/container.h -------------------------------------------------------------------------------- /src/util/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/hex.h -------------------------------------------------------------------------------- /src/util/ieee_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/ieee_float.cpp -------------------------------------------------------------------------------- /src/util/ieee_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/ieee_float.h -------------------------------------------------------------------------------- /src/util/metricsbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/metricsbackend.h -------------------------------------------------------------------------------- /src/util/numeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/numeric.cpp -------------------------------------------------------------------------------- /src/util/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/numeric.h -------------------------------------------------------------------------------- /src/util/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/png.cpp -------------------------------------------------------------------------------- /src/util/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/png.h -------------------------------------------------------------------------------- /src/util/pointabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/pointabilities.h -------------------------------------------------------------------------------- /src/util/pointedthing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/pointedthing.cpp -------------------------------------------------------------------------------- /src/util/pointedthing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/pointedthing.h -------------------------------------------------------------------------------- /src/util/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/pointer.h -------------------------------------------------------------------------------- /src/util/quicktune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/quicktune.cpp -------------------------------------------------------------------------------- /src/util/quicktune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/quicktune.h -------------------------------------------------------------------------------- /src/util/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/serialize.cpp -------------------------------------------------------------------------------- /src/util/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/serialize.h -------------------------------------------------------------------------------- /src/util/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/sha1.cpp -------------------------------------------------------------------------------- /src/util/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/sha1.h -------------------------------------------------------------------------------- /src/util/srp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/srp.cpp -------------------------------------------------------------------------------- /src/util/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/srp.h -------------------------------------------------------------------------------- /src/util/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/stream.h -------------------------------------------------------------------------------- /src/util/strfnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/strfnd.h -------------------------------------------------------------------------------- /src/util/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/string.cpp -------------------------------------------------------------------------------- /src/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/string.h -------------------------------------------------------------------------------- /src/util/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/thread.h -------------------------------------------------------------------------------- /src/util/timetaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/timetaker.cpp -------------------------------------------------------------------------------- /src/util/timetaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/timetaker.h -------------------------------------------------------------------------------- /src/util/tracy_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/util/tracy_wrapper.h -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/version.h -------------------------------------------------------------------------------- /src/voxel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/voxel.cpp -------------------------------------------------------------------------------- /src/voxel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/voxel.h -------------------------------------------------------------------------------- /src/voxelalgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/voxelalgorithms.cpp -------------------------------------------------------------------------------- /src/voxelalgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/src/voxelalgorithms.h -------------------------------------------------------------------------------- /util/buildbot/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/buildbot/common.sh -------------------------------------------------------------------------------- /util/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/bump_version.sh -------------------------------------------------------------------------------- /util/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/ci/build.sh -------------------------------------------------------------------------------- /util/ci/build_luajit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/ci/build_luajit.sh -------------------------------------------------------------------------------- /util/ci/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/ci/clang-tidy.sh -------------------------------------------------------------------------------- /util/ci/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/ci/common.sh -------------------------------------------------------------------------------- /util/ci/run-clang-tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/ci/run-clang-tidy.py -------------------------------------------------------------------------------- /util/helper_mod/error.lua: -------------------------------------------------------------------------------- 1 | error("intentional") 2 | -------------------------------------------------------------------------------- /util/helper_mod/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/helper_mod/init.lua -------------------------------------------------------------------------------- /util/helper_mod/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/helper_mod/mod.conf -------------------------------------------------------------------------------- /util/stress_mapgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/stress_mapgen.sh -------------------------------------------------------------------------------- /util/test_error_cases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/test_error_cases.sh -------------------------------------------------------------------------------- /util/test_multiplayer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/test_multiplayer.sh -------------------------------------------------------------------------------- /util/updatepo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/util/updatepo.sh -------------------------------------------------------------------------------- /worlds/worlds_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollerozxa/rollertest/HEAD/worlds/worlds_here.txt --------------------------------------------------------------------------------