max tokens

~60127 tokens

├── .dorpsgek.yml
├── .editorconfig
├── .github
    ├── FUNDING.yml
    ├── ISSUE_TEMPLATE
    │   ├── bug.yaml
    │   ├── config.yml
    │   └── crash.yaml
    ├── PULL_REQUEST_TEMPLATE.md
    ├── changelog.py
    ├── codeql
    │   └── codeql-config.yml
    ├── dependabot.yml
    ├── script-missing-mode-enforcement.py
    ├── unused-strings.py
    └── workflows
    │   ├── ci-build.yml
    │   ├── ci-emscripten.yml
    │   ├── ci-linux.yml
    │   ├── ci-macos.yml
    │   ├── ci-mingw.yml
    │   ├── ci-nightly.yml
    │   ├── ci-windows.yml
    │   ├── codeql.yml
    │   ├── commit-checker.yml
    │   ├── preview-build.yml
    │   ├── preview.yml
    │   ├── rebase-checker.yml
    │   ├── release-docs.yml
    │   ├── release-linux.yml
    │   ├── release-macos.yml
    │   ├── release-source.yml
    │   ├── release-windows-store.yml
    │   ├── release-windows.yml
    │   ├── release.yml
    │   ├── script-missing-mode-enforcement.yml
    │   ├── unused-strings.yml
    │   ├── upload-cdn.yml
    │   ├── upload-gog.yml
    │   └── upload-steam.yml
├── .gitignore
├── CMakeLists.txt
├── CODINGSTYLE.md
├── COMPILING.md
├── CONTRIBUTING.md
├── COPYING.md
├── CPackProperties.cmake.in
├── CREDITS.md
├── Doxyfile.in
├── README.md
├── bin
    ├── CMakeLists.txt
    ├── ai
    │   ├── CMakeLists.txt
    │   ├── compat_0.7.nut
    │   ├── compat_1.0.nut
    │   ├── compat_1.1.nut
    │   ├── compat_1.10.nut
    │   ├── compat_1.11.nut
    │   ├── compat_1.2.nut
    │   ├── compat_1.3.nut
    │   ├── compat_1.4.nut
    │   ├── compat_1.5.nut
    │   ├── compat_1.6.nut
    │   ├── compat_1.7.nut
    │   ├── compat_1.8.nut
    │   ├── compat_1.9.nut
    │   ├── compat_12.nut
    │   ├── compat_13.nut
    │   ├── compat_14.nut
    │   └── compat_15.nut
    ├── game
    │   ├── CMakeLists.txt
    │   ├── compat_1.10.nut
    │   ├── compat_1.11.nut
    │   ├── compat_1.2.nut
    │   ├── compat_1.3.nut
    │   ├── compat_1.4.nut
    │   ├── compat_1.5.nut
    │   ├── compat_1.6.nut
    │   ├── compat_1.7.nut
    │   ├── compat_1.8.nut
    │   ├── compat_1.9.nut
    │   ├── compat_12.nut
    │   ├── compat_13.nut
    │   ├── compat_14.nut
    │   └── compat_15.nut
    └── scripts
    │   ├── autoexec.scr.example
    │   ├── game_start.scr.example
    │   ├── on_client.scr.example
    │   ├── on_dedicated.scr.example
    │   ├── on_server.scr.example
    │   ├── on_server_connect.scr.example
    │   ├── pre_dedicated.scr.example
    │   ├── pre_server.scr.example
    │   └── readme.txt
├── changelog.md
├── cmake
    ├── 3rdparty
    │   └── llvm
    │   │   ├── CheckAtomic.cmake
    │   │   └── LICENSE.txt
    ├── AddCustomXXXTimestamp.cmake
    ├── Catch.cmake
    ├── CatchAddTests.cmake
    ├── CompileFlags.cmake
    ├── CreateGrfCommand.cmake
    ├── CreateRegression.cmake
    ├── FindAllegro.cmake
    ├── FindEditbin.cmake
    ├── FindFluidsynth.cmake
    ├── FindFontconfig.cmake
    ├── FindGrfcodec.cmake
    ├── FindHarfbuzz.cmake
    ├── FindICU.cmake
    ├── FindIconv.cmake
    ├── FindLZO.cmake
    ├── FindOgg.cmake
    ├── FindOpus.cmake
    ├── FindOpusFile.cmake
    ├── FindPandoc.cmake
    ├── FindSSE.cmake
    ├── FindXaudio2.cmake
    ├── FixVcpkgLibrary.cmake
    ├── InstallAndPackage.cmake
    ├── LinkPackage.cmake
    ├── MSVCFilters.cmake
    ├── Options.cmake
    ├── PackageBundle.cmake
    ├── PackageDeb.cmake
    ├── PackageNSIS.cmake
    ├── PackageRPM.cmake
    ├── SourceList.cmake
    ├── Static.cmake
    └── scripts
    │   ├── Baseset.cmake
    │   ├── CreateGRF.cmake
    │   ├── Desktop.cmake
    │   ├── FindVersion.cmake
    │   ├── GenerateWidget.cmake
    │   ├── Regression.cmake
    │   ├── SquirrelExport.cmake
    │   └── SquirrelIncludes.cmake
├── docs
    ├── admin_network.md
    ├── company_colour_indexes.html
    ├── compiling_lang_files.md
    ├── debugging_desyncs.md
    ├── desync.md
    ├── directory_structure.md
    ├── eints.md
    ├── elrail.svg
    ├── elrail_tile.png
    ├── elrail_track.png
    ├── fonts.md
    ├── game_coordinator.md
    ├── importing_town_data.md
    ├── landscape.html
    ├── landscape_externals.html
    ├── landscape_grid.html
    ├── linkgraph.md
    ├── logging_and_performance_metrics.md
    ├── multiplayer.md
    ├── obg_format.txt
    ├── obm_format.txt
    ├── obs_format.txt
    ├── openttd.6
    ├── ottd-colourtext-palette.png
    ├── palettes
    │   ├── openttd.gpl
    │   ├── palette.act
    │   └── palette_key.png
    ├── releasing_openttd.md
    ├── savegame_format.md
    ├── symbol_server.md
    └── tileh.png
├── known-bugs.md
├── media
    ├── CMakeLists.txt
    ├── baseset
    │   ├── CMakeLists.txt
    │   ├── OpenTTD-Mono.ttf
    │   ├── OpenTTD-Sans.ttf
    │   ├── OpenTTD-Serif.ttf
    │   ├── OpenTTD-Small.ttf
    │   ├── OpenTTD-font.md
    │   ├── no_music.obm
    │   ├── no_sound.obs
    │   ├── openttd.grf
    │   ├── openttd.grf.hash
    │   ├── openttd
    │   │   ├── 2ccmap.nfo
    │   │   ├── CMakeLists.txt
    │   │   ├── airport_preview.nfo
    │   │   ├── airport_preview.png
    │   │   ├── airports.nfo
    │   │   ├── airports.png
    │   │   ├── aqueduct.nfo
    │   │   ├── aqueduct.png
    │   │   ├── autorail.nfo
    │   │   ├── autorail.png
    │   │   ├── bridge_decks.nfo
    │   │   ├── bridge_decks.png
    │   │   ├── bridge_decks_toyland.png
    │   │   ├── canal_locks.png
    │   │   ├── canals.nfo
    │   │   ├── canals.png
    │   │   ├── chars.nfo
    │   │   ├── chars.png
    │   │   ├── elrails.nfo
    │   │   ├── elrails.png
    │   │   ├── foundations.nfo
    │   │   ├── foundations.png
    │   │   ├── mono.nfo
    │   │   ├── mono.png
    │   │   ├── oneway.nfo
    │   │   ├── oneway.png
    │   │   ├── openttd.nfo
    │   │   ├── openttdgui.nfo
    │   │   ├── openttdgui.png
    │   │   ├── openttdgui_build_tram.png
    │   │   ├── openttdgui_convert_road.png
    │   │   ├── openttdgui_convert_tram.png
    │   │   ├── openttdgui_group_livery.png
    │   │   ├── overlay_rocks.nfo
    │   │   ├── overlay_rocks.png
    │   │   ├── overlay_snowy_rocks_1.png
    │   │   ├── overlay_snowy_rocks_2.png
    │   │   ├── overlay_snowy_rocks_3.png
    │   │   ├── overlay_snowy_rocks_4.png
    │   │   ├── palette.nfo
    │   │   ├── road_waypoints.nfo
    │   │   ├── road_waypoints.png
    │   │   ├── roadstops.nfo
    │   │   ├── roadstops.png
    │   │   ├── signals.nfo
    │   │   ├── signals.png
    │   │   ├── sloped_tracks.nfo
    │   │   ├── sloped_tracks.png
    │   │   ├── tramtracks.nfo
    │   │   ├── tramtracks.png
    │   │   ├── tramtracks_bare_depot.png
    │   │   ├── tunnel_portals.nfo
    │   │   └── tunnel_portals.png
    │   ├── opntitle.dat
    │   ├── orig_dos.obg
    │   ├── orig_dos.obm
    │   ├── orig_dos.obs
    │   ├── orig_dos_de.obg
    │   ├── orig_extra.grf
    │   ├── orig_extra.grf.hash
    │   ├── orig_extra
    │   │   ├── CMakeLists.txt
    │   │   ├── airports_orig_extra.nfo
    │   │   ├── canals_extra.nfo
    │   │   ├── chars_orig_extra.nfo
    │   │   ├── fix_graphics.nfo
    │   │   ├── fix_graphics.png
    │   │   ├── fix_gui_icons.nfo
    │   │   ├── fix_gui_icons.png
    │   │   ├── orig_extra.nfo
    │   │   ├── rivers
    │   │   │   ├── arctic.nfo
    │   │   │   ├── arctic_brown.png
    │   │   │   ├── arctic_snowy.png
    │   │   │   ├── rapids.nfo
    │   │   │   ├── rapids.png
    │   │   │   ├── rapids_shading.png
    │   │   │   ├── temperate.nfo
    │   │   │   ├── temperate.png
    │   │   │   ├── toyland.nfo
    │   │   │   ├── toyland.png
    │   │   │   ├── toyland_rapids.nfo
    │   │   │   ├── toyland_rapids.png
    │   │   │   ├── toyland_rapids_shading.png
    │   │   │   ├── tropic.nfo
    │   │   │   ├── tropic_desert.png
    │   │   │   └── tropic_forest.png
    │   │   ├── shore.nfo
    │   │   └── shore.png
    │   ├── orig_tto.obm
    │   ├── orig_win.obg
    │   ├── orig_win.obm
    │   └── orig_win.obs
    ├── openttd.1024.png
    ├── openttd.128.png
    ├── openttd.16.png
    ├── openttd.2048.png
    ├── openttd.256.png
    ├── openttd.32.bmp
    ├── openttd.32.png
    ├── openttd.32.xpm
    ├── openttd.48.png
    ├── openttd.512.png
    ├── openttd.64.png
    ├── openttd.64.xpm
    ├── openttd.desktop
    └── openttd.svg
├── os
    ├── emscripten
    │   ├── Dockerfile
    │   ├── README.md
    │   ├── cmake
    │   │   ├── FindLibLZMA.cmake
    │   │   ├── FindPNG.cmake
    │   │   ├── FindSDL2.cmake
    │   │   └── FindZLIB.cmake
    │   ├── loading.png
    │   ├── ports
    │   │   └── liblzma.py
    │   ├── pre.js
    │   └── shell.html
    ├── gog
    │   ├── linux.json
    │   ├── macos.json
    │   └── windows.json
    ├── linux
    │   └── shf-compressed.patch
    ├── macosx
    │   ├── Info.plist.in
    │   ├── notarize.sh
    │   ├── openttd.entitlements
    │   ├── openttd.icns
    │   └── splash.png
    ├── steam
    │   └── release.vdf
    └── windows
    │   ├── nsis-top.bmp
    │   ├── nsis-welcome.bmp
    │   ├── openttd.ico
    │   ├── openttd.manifest
    │   ├── sign.bat
    │   ├── sign_azure.ps1
    │   └── winstore
    │       ├── generate-assets.bat
    │       ├── generate-assets.ps1
    │       ├── generate-key.bat
    │       ├── generate-key.ps1
    │       ├── manifests
    │           ├── AssetsPackage.appxmanifest
    │           ├── Package.appxmanifest
    │           └── PackagingLayout.xml
    │       ├── prepare-manifests.bat
    │       ├── prepare-manifests.ps1
    │       ├── set-version.bat
    │       └── set-version.ps1
├── regression
    ├── CMakeLists.txt
    ├── regression.cfg
    ├── regression
    │   ├── CMakeLists.txt
    │   ├── info.nut
    │   ├── main.nut
    │   ├── require.nut
    │   ├── result.txt
    │   └── test.sav
    └── stationlist
    │   ├── CMakeLists.txt
    │   ├── info.nut
    │   ├── main.nut
    │   ├── result.txt
    │   └── test.sav
├── src
    ├── 3rdparty
    │   ├── CMakeLists.txt
    │   ├── README.licensing
    │   ├── catch2
    │   │   ├── CMakeLists.txt
    │   │   ├── LICENSE.txt
    │   │   └── catch.hpp
    │   ├── fmt
    │   │   ├── CMakeLists.txt
    │   │   ├── LICENSE.rst
    │   │   ├── args.h
    │   │   ├── base.h
    │   │   ├── chrono.h
    │   │   ├── color.h
    │   │   ├── compile.h
    │   │   ├── core.h
    │   │   ├── format-inl.h
    │   │   ├── format.cc
    │   │   ├── format.h
    │   │   ├── os.cc
    │   │   ├── os.h
    │   │   ├── ostream.h
    │   │   ├── printf.h
    │   │   ├── ranges.h
    │   │   ├── std.h
    │   │   └── xchar.h
    │   ├── icu
    │   │   ├── CMakeLists.txt
    │   │   ├── LICENSE
    │   │   ├── scriptrun.cpp
    │   │   ├── scriptrun.h
    │   │   └── tests
    │   │   │   ├── CMakeLists.txt
    │   │   │   └── test_srtest.cpp
    │   ├── md5
    │   │   ├── CMakeLists.txt
    │   │   ├── md5.cpp
    │   │   └── md5.h
    │   ├── monocypher
    │   │   ├── AUTHORS.md
    │   │   ├── CHANGELOG.md
    │   │   ├── CMakeLists.txt
    │   │   ├── LICENCE.md
    │   │   ├── README.md
    │   │   ├── monocypher-ed25519.cpp
    │   │   ├── monocypher-ed25519.h
    │   │   ├── monocypher.cpp
    │   │   └── monocypher.h
    │   ├── nlohmann
    │   │   ├── CMakeLists.txt
    │   │   ├── LICENSE.MIT
    │   │   └── json.hpp
    │   ├── opengl
    │   │   ├── CMakeLists.txt
    │   │   ├── glext.h
    │   │   ├── khrplatform.h
    │   │   └── wglext.h
    │   ├── openttd_social_integration_api
    │   │   ├── CMakeLists.txt
    │   │   ├── LICENSE
    │   │   ├── openttd_social_integration_api.h
    │   │   └── openttd_social_integration_api_v1.h
    │   └── squirrel
    │   │   ├── CMakeLists.txt
    │   │   ├── COPYRIGHT
    │   │   ├── README.OpenTTD
    │   │   ├── include
    │   │       ├── CMakeLists.txt
    │   │       ├── sqstdaux.h
    │   │       ├── sqstdmath.h
    │   │       └── squirrel.h
    │   │   ├── sqstdlib
    │   │       ├── CMakeLists.txt
    │   │       ├── sqstdaux.cpp
    │   │       └── sqstdmath.cpp
    │   │   └── squirrel
    │   │       ├── CMakeLists.txt
    │   │       ├── sqapi.cpp
    │   │       ├── sqarray.h
    │   │       ├── sqbaselib.cpp
    │   │       ├── sqclass.cpp
    │   │       ├── sqclass.h
    │   │       ├── sqclosure.h
    │   │       ├── sqcompiler.cpp
    │   │       ├── sqcompiler.h
    │   │       ├── sqdebug.cpp
    │   │       ├── sqfuncproto.h
    │   │       ├── sqfuncstate.cpp
    │   │       ├── sqfuncstate.h
    │   │       ├── sqlexer.cpp
    │   │       ├── sqlexer.h
    │   │       ├── sqobject.cpp
    │   │       ├── sqobject.h
    │   │       ├── sqopcodes.h
    │   │       ├── sqpcheader.h
    │   │       ├── sqstate.cpp
    │   │       ├── sqstate.h
    │   │       ├── sqstring.h
    │   │       ├── sqtable.cpp
    │   │       ├── sqtable.h
    │   │       ├── squserdata.h
    │   │       ├── squtils.h
    │   │       ├── sqvm.cpp
    │   │       └── sqvm.h
    ├── CMakeLists.txt
    ├── ai
    │   ├── CMakeLists.txt
    │   ├── ai.hpp
    │   ├── ai_config.cpp
    │   ├── ai_config.hpp
    │   ├── ai_core.cpp
    │   ├── ai_gui.cpp
    │   ├── ai_gui.hpp
    │   ├── ai_info.cpp
    │   ├── ai_info.hpp
    │   ├── ai_instance.cpp
    │   ├── ai_instance.hpp
    │   ├── ai_scanner.cpp
    │   └── ai_scanner.hpp
    ├── aircraft.h
    ├── aircraft_cmd.cpp
    ├── aircraft_cmd.h
    ├── aircraft_gui.cpp
    ├── airport.cpp
    ├── airport.h
    ├── airport_cmd.h
    ├── airport_gui.cpp
    ├── animated_tile.cpp
    ├── animated_tile_func.h
    ├── animated_tile_map.h
    ├── articulated_vehicles.cpp
    ├── articulated_vehicles.h
    ├── autocompletion.cpp
    ├── autocompletion.h
    ├── autoreplace.cpp
    ├── autoreplace_base.h
    ├── autoreplace_cmd.cpp
    ├── autoreplace_cmd.h
    ├── autoreplace_func.h
    ├── autoreplace_gui.cpp
    ├── autoreplace_gui.h
    ├── autoreplace_type.h
    ├── autoslope.h
    ├── base_consist.cpp
    ├── base_consist.h
    ├── base_media_base.h
    ├── base_media_func.h
    ├── base_media_graphics.h
    ├── base_media_music.h
    ├── base_media_sounds.h
    ├── base_station_base.h
    ├── bitmap_type.h
    ├── blitter
    │   ├── 32bpp_anim.cpp
    │   ├── 32bpp_anim.hpp
    │   ├── 32bpp_anim_sse2.cpp
    │   ├── 32bpp_anim_sse2.hpp
    │   ├── 32bpp_anim_sse4.cpp
    │   ├── 32bpp_anim_sse4.hpp
    │   ├── 32bpp_base.cpp
    │   ├── 32bpp_base.hpp
    │   ├── 32bpp_optimized.cpp
    │   ├── 32bpp_optimized.hpp
    │   ├── 32bpp_simple.cpp
    │   ├── 32bpp_simple.hpp
    │   ├── 32bpp_sse2.cpp
    │   ├── 32bpp_sse2.hpp
    │   ├── 32bpp_sse4.cpp
    │   ├── 32bpp_sse4.hpp
    │   ├── 32bpp_sse_func.hpp
    │   ├── 32bpp_sse_type.h
    │   ├── 32bpp_ssse3.cpp
    │   ├── 32bpp_ssse3.hpp
    │   ├── 40bpp_anim.cpp
    │   ├── 40bpp_anim.hpp
    │   ├── 8bpp_base.cpp
    │   ├── 8bpp_base.hpp
    │   ├── 8bpp_optimized.cpp
    │   ├── 8bpp_optimized.hpp
    │   ├── 8bpp_simple.cpp
    │   ├── 8bpp_simple.hpp
    │   ├── CMakeLists.txt
    │   ├── base.hpp
    │   ├── common.hpp
    │   ├── factory.hpp
    │   ├── null.cpp
    │   └── null.hpp
    ├── bmp.cpp
    ├── bmp.h
    ├── bootstrap_gui.cpp
    ├── bridge.h
    ├── bridge_gui.cpp
    ├── bridge_map.cpp
    ├── bridge_map.h
    ├── bridge_type.h
    ├── build_vehicle_gui.cpp
    ├── cachecheck.cpp
    ├── cargo_type.h
    ├── cargoaction.cpp
    ├── cargoaction.h
    ├── cargomonitor.cpp
    ├── cargomonitor.h
    ├── cargopacket.cpp
    ├── cargopacket.h
    ├── cargotype.cpp
    ├── cargotype.h
    ├── cheat.cpp
    ├── cheat_func.h
    ├── cheat_gui.cpp
    ├── cheat_type.h
    ├── clear_cmd.cpp
    ├── clear_func.h
    ├── clear_map.h
    ├── command.cpp
    ├── command_func.h
    ├── command_type.h
    ├── company_base.h
    ├── company_cmd.cpp
    ├── company_cmd.h
    ├── company_func.h
    ├── company_gui.cpp
    ├── company_gui.h
    ├── company_manager_face.h
    ├── company_type.h
    ├── console.cpp
    ├── console_cmds.cpp
    ├── console_func.h
    ├── console_gui.cpp
    ├── console_gui.h
    ├── console_internal.h
    ├── console_type.h
    ├── core
    │   ├── CMakeLists.txt
    │   ├── alloc_type.hpp
    │   ├── backup_type.hpp
    │   ├── base_bitset_type.hpp
    │   ├── bitmath_func.hpp
    │   ├── container_func.hpp
    │   ├── convertible_through_base.hpp
    │   ├── endian_func.hpp
    │   ├── enum_type.hpp
    │   ├── flatset_type.hpp
    │   ├── format.hpp
    │   ├── geometry_func.cpp
    │   ├── geometry_func.hpp
    │   ├── geometry_type.hpp
    │   ├── kdtree.hpp
    │   ├── math_func.cpp
    │   ├── math_func.hpp
    │   ├── multimap.hpp
    │   ├── overflowsafe_type.hpp
    │   ├── pool_func.cpp
    │   ├── pool_func.hpp
    │   ├── pool_type.hpp
    │   ├── random_func.cpp
    │   ├── random_func.hpp
    │   ├── string_builder.cpp
    │   ├── string_builder.hpp
    │   ├── string_consumer.cpp
    │   ├── string_consumer.hpp
    │   ├── string_inplace.cpp
    │   ├── string_inplace.hpp
    │   ├── strong_typedef_type.hpp
    │   ├── utf8.cpp
    │   └── utf8.hpp
    ├── cpu.cpp
    ├── cpu.h
    ├── crashlog.cpp
    ├── crashlog.h
    ├── currency.cpp
    ├── currency.h
    ├── date_gui.cpp
    ├── date_gui.h
    ├── debug.cpp
    ├── debug.h
    ├── dedicated.cpp
    ├── depot.cpp
    ├── depot_base.h
    ├── depot_cmd.cpp
    ├── depot_cmd.h
    ├── depot_func.h
    ├── depot_gui.cpp
    ├── depot_map.h
    ├── depot_type.h
    ├── direction_func.h
    ├── direction_type.h
    ├── disaster_vehicle.cpp
    ├── disaster_vehicle.h
    ├── dock_cmd.h
    ├── dock_gui.cpp
    ├── driver.cpp
    ├── driver.h
    ├── dropdown.cpp
    ├── dropdown_common_type.h
    ├── dropdown_func.h
    ├── dropdown_type.h
    ├── economy.cpp
    ├── economy_base.h
    ├── economy_cmd.h
    ├── economy_func.h
    ├── economy_type.h
    ├── effectvehicle.cpp
    ├── effectvehicle_base.h
    ├── effectvehicle_func.h
    ├── elrail.cpp
    ├── elrail_func.h
    ├── engine.cpp
    ├── engine_base.h
    ├── engine_cmd.h
    ├── engine_func.h
    ├── engine_gui.cpp
    ├── engine_gui.h
    ├── engine_type.h
    ├── error.cpp
    ├── error.h
    ├── error_func.h
    ├── error_gui.cpp
    ├── fileio.cpp
    ├── fileio_func.h
    ├── fileio_type.h
    ├── fios.cpp
    ├── fios.h
    ├── fios_gui.cpp
    ├── fontcache.cpp
    ├── fontcache.h
    ├── fontcache
    │   ├── CMakeLists.txt
    │   ├── freetypefontcache.cpp
    │   ├── spritefontcache.cpp
    │   ├── spritefontcache.h
    │   ├── truetypefontcache.cpp
    │   └── truetypefontcache.h
    ├── framerate_gui.cpp
    ├── framerate_type.h
    ├── game
    │   ├── CMakeLists.txt
    │   ├── game.hpp
    │   ├── game_config.cpp
    │   ├── game_config.hpp
    │   ├── game_core.cpp
    │   ├── game_gui.cpp
    │   ├── game_gui.hpp
    │   ├── game_info.cpp
    │   ├── game_info.hpp
    │   ├── game_instance.cpp
    │   ├── game_instance.hpp
    │   ├── game_scanner.cpp
    │   ├── game_scanner.hpp
    │   ├── game_text.cpp
    │   └── game_text.hpp
    ├── gamelog.cpp
    ├── gamelog.h
    ├── gamelog_internal.h
    ├── genworld.cpp
    ├── genworld.h
    ├── genworld_gui.cpp
    ├── gfx.cpp
    ├── gfx_func.h
    ├── gfx_layout.cpp
    ├── gfx_layout.h
    ├── gfx_layout_fallback.cpp
    ├── gfx_layout_fallback.h
    ├── gfx_layout_icu.cpp
    ├── gfx_layout_icu.h
    ├── gfx_type.h
    ├── gfxinit.cpp
    ├── gfxinit.h
    ├── goal.cpp
    ├── goal_base.h
    ├── goal_cmd.h
    ├── goal_gui.cpp
    ├── goal_type.h
    ├── graph_gui.cpp
    ├── graph_gui.h
    ├── ground_vehicle.cpp
    ├── ground_vehicle.hpp
    ├── group.h
    ├── group_cmd.cpp
    ├── group_cmd.h
    ├── group_gui.cpp
    ├── group_gui.h
    ├── group_type.h
    ├── gui.h
    ├── heightmap.cpp
    ├── heightmap.h
    ├── help_gui.cpp
    ├── help_gui.h
    ├── highscore.cpp
    ├── highscore.h
    ├── highscore_gui.cpp
    ├── hotkeys.cpp
    ├── hotkeys.h
    ├── house.h
    ├── house_type.h
    ├── industry.h
    ├── industry_cmd.cpp
    ├── industry_cmd.h
    ├── industry_gui.cpp
    ├── industry_map.h
    ├── industry_type.h
    ├── industrytype.h
    ├── ini.cpp
    ├── ini_load.cpp
    ├── ini_type.h
    ├── intro_gui.cpp
    ├── landscape.cpp
    ├── landscape.h
    ├── landscape_cmd.h
    ├── landscape_type.h
    ├── lang
    │   ├── CMakeLists.txt
    │   ├── afrikaans.txt
    │   ├── arabic_egypt.txt
    │   ├── basque.txt
    │   ├── belarusian.txt
    │   ├── brazilian_portuguese.txt
    │   ├── bulgarian.txt
    │   ├── catalan.txt
    │   ├── chuvash.txt
    │   ├── croatian.txt
    │   ├── czech.txt
    │   ├── danish.txt
    │   ├── dutch.txt
    │   ├── english.txt
    │   ├── english_AU.txt
    │   ├── english_US.txt
    │   ├── esperanto.txt
    │   ├── estonian.txt
    │   ├── faroese.txt
    │   ├── finnish.txt
    │   ├── french.txt
    │   ├── frisian.txt
    │   ├── gaelic.txt
    │   ├── galician.txt
    │   ├── german.txt
    │   ├── greek.txt
    │   ├── hebrew.txt
    │   ├── hindi.txt
    │   ├── hungarian.txt
    │   ├── icelandic.txt
    │   ├── ido.txt
    │   ├── indonesian.txt
    │   ├── irish.txt
    │   ├── italian.txt
    │   ├── japanese.txt
    │   ├── korean.txt
    │   ├── latin.txt
    │   ├── latvian.txt
    │   ├── lithuanian.txt
    │   ├── luxembourgish.txt
    │   ├── macedonian.txt
    │   ├── malay.txt
    │   ├── maltese.txt
    │   ├── maori.txt
    │   ├── marathi.txt
    │   ├── norwegian_bokmal.txt
    │   ├── norwegian_nynorsk.txt
    │   ├── persian.txt
    │   ├── polish.txt
    │   ├── portuguese.txt
    │   ├── romanian.txt
    │   ├── russian.txt
    │   ├── serbian.txt
    │   ├── simplified_chinese.txt
    │   ├── slovak.txt
    │   ├── slovenian.txt
    │   ├── spanish.txt
    │   ├── spanish_MX.txt
    │   ├── swedish.txt
    │   ├── tamil.txt
    │   ├── thai.txt
    │   ├── traditional_chinese.txt
    │   ├── turkish.txt
    │   ├── ukrainian.txt
    │   ├── urdu.txt
    │   ├── vietnamese.txt
    │   └── welsh.txt
    ├── language.h
    ├── league_base.h
    ├── league_cmd.cpp
    ├── league_cmd.h
    ├── league_gui.cpp
    ├── league_gui.h
    ├── league_type.h
    ├── library_loader.h
    ├── linkgraph
    │   ├── CMakeLists.txt
    │   ├── demands.cpp
    │   ├── demands.h
    │   ├── flowmapper.cpp
    │   ├── flowmapper.h
    │   ├── init.h
    │   ├── linkgraph.cpp
    │   ├── linkgraph.h
    │   ├── linkgraph_base.h
    │   ├── linkgraph_gui.cpp
    │   ├── linkgraph_gui.h
    │   ├── linkgraph_type.h
    │   ├── linkgraphjob.cpp
    │   ├── linkgraphjob.h
    │   ├── linkgraphjob_base.h
    │   ├── linkgraphschedule.cpp
    │   ├── linkgraphschedule.h
    │   ├── mcf.cpp
    │   ├── mcf.h
    │   ├── refresh.cpp
    │   └── refresh.h
    ├── livery.h
    ├── main_gui.cpp
    ├── map.cpp
    ├── map_func.h
    ├── map_type.h
    ├── misc.cpp
    ├── misc
    │   ├── CMakeLists.txt
    │   ├── alternating_iterator.hpp
    │   ├── autorelease.hpp
    │   ├── binaryheap.hpp
    │   ├── dbg_helpers.cpp
    │   ├── dbg_helpers.h
    │   ├── endian_buffer.hpp
    │   ├── getoptdata.cpp
    │   ├── getoptdata.h
    │   ├── hashtable.hpp
    │   ├── history.cpp
    │   ├── history_func.hpp
    │   ├── history_type.hpp
    │   └── lrucache.hpp
    ├── misc_cmd.cpp
    ├── misc_cmd.h
    ├── misc_gui.cpp
    ├── mixer.cpp
    ├── mixer.h
    ├── music.cpp
    ├── music
    │   ├── CMakeLists.txt
    │   ├── allegro_m.cpp
    │   ├── allegro_m.h
    │   ├── bemidi.cpp
    │   ├── bemidi.h
    │   ├── cocoa_m.cpp
    │   ├── cocoa_m.h
    │   ├── dmusic.cpp
    │   ├── dmusic.h
    │   ├── extmidi.cpp
    │   ├── extmidi.h
    │   ├── fluidsynth.cpp
    │   ├── fluidsynth.h
    │   ├── midi.h
    │   ├── midifile.cpp
    │   ├── midifile.hpp
    │   ├── music_driver.hpp
    │   ├── null_m.cpp
    │   ├── null_m.h
    │   ├── win32_m.cpp
    │   └── win32_m.h
    ├── music_gui.cpp
    ├── network
    │   ├── CMakeLists.txt
    │   ├── core
    │   │   ├── CMakeLists.txt
    │   │   ├── address.cpp
    │   │   ├── address.h
    │   │   ├── config.cpp
    │   │   ├── config.h
    │   │   ├── core.cpp
    │   │   ├── core.h
    │   │   ├── host.cpp
    │   │   ├── host.h
    │   │   ├── http.h
    │   │   ├── http_curl.cpp
    │   │   ├── http_none.cpp
    │   │   ├── http_shared.h
    │   │   ├── http_winhttp.cpp
    │   │   ├── network_game_info.cpp
    │   │   ├── network_game_info.h
    │   │   ├── os_abstraction.cpp
    │   │   ├── os_abstraction.h
    │   │   ├── packet.cpp
    │   │   ├── packet.h
    │   │   ├── tcp.cpp
    │   │   ├── tcp.h
    │   │   ├── tcp_admin.cpp
    │   │   ├── tcp_admin.h
    │   │   ├── tcp_connect.cpp
    │   │   ├── tcp_content.cpp
    │   │   ├── tcp_content.h
    │   │   ├── tcp_content_type.h
    │   │   ├── tcp_coordinator.cpp
    │   │   ├── tcp_coordinator.h
    │   │   ├── tcp_game.cpp
    │   │   ├── tcp_game.h
    │   │   ├── tcp_listen.h
    │   │   ├── tcp_stun.cpp
    │   │   ├── tcp_stun.h
    │   │   ├── tcp_turn.cpp
    │   │   ├── tcp_turn.h
    │   │   ├── udp.cpp
    │   │   └── udp.h
    │   ├── network.cpp
    │   ├── network.h
    │   ├── network_admin.cpp
    │   ├── network_admin.h
    │   ├── network_base.h
    │   ├── network_chat_gui.cpp
    │   ├── network_client.cpp
    │   ├── network_client.h
    │   ├── network_command.cpp
    │   ├── network_content.cpp
    │   ├── network_content.h
    │   ├── network_content_gui.cpp
    │   ├── network_content_gui.h
    │   ├── network_coordinator.cpp
    │   ├── network_coordinator.h
    │   ├── network_crypto.cpp
    │   ├── network_crypto.h
    │   ├── network_crypto_internal.h
    │   ├── network_func.h
    │   ├── network_gamelist.cpp
    │   ├── network_gamelist.h
    │   ├── network_gui.cpp
    │   ├── network_gui.h
    │   ├── network_internal.h
    │   ├── network_query.cpp
    │   ├── network_query.h
    │   ├── network_server.cpp
    │   ├── network_server.h
    │   ├── network_stun.cpp
    │   ├── network_stun.h
    │   ├── network_survey.cpp
    │   ├── network_survey.h
    │   ├── network_turn.cpp
    │   ├── network_turn.h
    │   ├── network_type.h
    │   ├── network_udp.cpp
    │   └── network_udp.h
    ├── newgrf.cpp
    ├── newgrf.h
    ├── newgrf
    │   ├── CMakeLists.txt
    │   ├── newgrf_act0.cpp
    │   ├── newgrf_act0_aircraft.cpp
    │   ├── newgrf_act0_airports.cpp
    │   ├── newgrf_act0_badges.cpp
    │   ├── newgrf_act0_bridges.cpp
    │   ├── newgrf_act0_canals.cpp
    │   ├── newgrf_act0_cargo.cpp
    │   ├── newgrf_act0_globalvar.cpp
    │   ├── newgrf_act0_houses.cpp
    │   ├── newgrf_act0_industries.cpp
    │   ├── newgrf_act0_objects.cpp
    │   ├── newgrf_act0_railtypes.cpp
    │   ├── newgrf_act0_roadstops.cpp
    │   ├── newgrf_act0_roadtypes.cpp
    │   ├── newgrf_act0_roadvehs.cpp
    │   ├── newgrf_act0_ships.cpp
    │   ├── newgrf_act0_sounds.cpp
    │   ├── newgrf_act0_stations.cpp
    │   ├── newgrf_act0_trains.cpp
    │   ├── newgrf_act1.cpp
    │   ├── newgrf_act10.cpp
    │   ├── newgrf_act11.cpp
    │   ├── newgrf_act12.cpp
    │   ├── newgrf_act13.cpp
    │   ├── newgrf_act14.cpp
    │   ├── newgrf_act2.cpp
    │   ├── newgrf_act3.cpp
    │   ├── newgrf_act4.cpp
    │   ├── newgrf_act5.cpp
    │   ├── newgrf_act6.cpp
    │   ├── newgrf_act7_9.cpp
    │   ├── newgrf_act8.cpp
    │   ├── newgrf_acta.cpp
    │   ├── newgrf_actb.cpp
    │   ├── newgrf_actc.cpp
    │   ├── newgrf_actd.cpp
    │   ├── newgrf_acte.cpp
    │   ├── newgrf_actf.cpp
    │   ├── newgrf_bytereader.cpp
    │   ├── newgrf_bytereader.h
    │   ├── newgrf_internal.h
    │   ├── newgrf_internal_vehicle.h
    │   ├── newgrf_stringmapping.cpp
    │   └── newgrf_stringmapping.h
    ├── newgrf_act5.h
    ├── newgrf_airport.cpp
    ├── newgrf_airport.h
    ├── newgrf_airporttiles.cpp
    ├── newgrf_airporttiles.h
    ├── newgrf_animation_base.h
    ├── newgrf_animation_type.h
    ├── newgrf_badge.cpp
    ├── newgrf_badge.h
    ├── newgrf_badge_config.cpp
    ├── newgrf_badge_config.h
    ├── newgrf_badge_gui.cpp
    ├── newgrf_badge_gui.h
    ├── newgrf_badge_type.h
    ├── newgrf_callbacks.h
    ├── newgrf_canal.cpp
    ├── newgrf_canal.h
    ├── newgrf_cargo.cpp
    ├── newgrf_cargo.h
    ├── newgrf_class.h
    ├── newgrf_class_func.h
    ├── newgrf_commons.cpp
    ├── newgrf_commons.h
    ├── newgrf_config.cpp
    ├── newgrf_config.h
    ├── newgrf_debug.h
    ├── newgrf_debug_gui.cpp
    ├── newgrf_engine.cpp
    ├── newgrf_engine.h
    ├── newgrf_generic.cpp
    ├── newgrf_generic.h
    ├── newgrf_gui.cpp
    ├── newgrf_house.cpp
    ├── newgrf_house.h
    ├── newgrf_industries.cpp
    ├── newgrf_industries.h
    ├── newgrf_industrytiles.cpp
    ├── newgrf_industrytiles.h
    ├── newgrf_object.cpp
    ├── newgrf_object.h
    ├── newgrf_profiling.cpp
    ├── newgrf_profiling.h
    ├── newgrf_properties.h
    ├── newgrf_railtype.cpp
    ├── newgrf_railtype.h
    ├── newgrf_roadstop.cpp
    ├── newgrf_roadstop.h
    ├── newgrf_roadtype.cpp
    ├── newgrf_roadtype.h
    ├── newgrf_sound.cpp
    ├── newgrf_sound.h
    ├── newgrf_spritegroup.cpp
    ├── newgrf_spritegroup.h
    ├── newgrf_station.cpp
    ├── newgrf_station.h
    ├── newgrf_storage.cpp
    ├── newgrf_storage.h
    ├── newgrf_text.cpp
    ├── newgrf_text.h
    ├── newgrf_text_type.h
    ├── newgrf_town.cpp
    ├── newgrf_town.h
    ├── newgrf_townname.cpp
    ├── newgrf_townname.h
    ├── news_cmd.h
    ├── news_func.h
    ├── news_gui.cpp
    ├── news_gui.h
    ├── news_type.h
    ├── object.h
    ├── object_base.h
    ├── object_cmd.cpp
    ├── object_cmd.h
    ├── object_gui.cpp
    ├── object_map.h
    ├── object_type.h
    ├── openttd.cpp
    ├── openttd.h
    ├── order_backup.cpp
    ├── order_backup.h
    ├── order_base.h
    ├── order_cmd.cpp
    ├── order_cmd.h
    ├── order_func.h
    ├── order_gui.cpp
    ├── order_type.h
    ├── os
    │   ├── CMakeLists.txt
    │   ├── macosx
    │   │   ├── CMakeLists.txt
    │   │   ├── crashlog_osx.cpp
    │   │   ├── font_osx.cpp
    │   │   ├── font_osx.h
    │   │   ├── macos.h
    │   │   ├── macos.mm
    │   │   ├── osx_main.cpp
    │   │   ├── osx_stdafx.h
    │   │   ├── string_osx.cpp
    │   │   ├── string_osx.h
    │   │   └── survey_osx.cpp
    │   ├── unix
    │   │   ├── CMakeLists.txt
    │   │   ├── crashlog_unix.cpp
    │   │   ├── font_unix.cpp
    │   │   ├── font_unix.h
    │   │   ├── library_loader_unix.cpp
    │   │   ├── survey_unix.cpp
    │   │   ├── unix.cpp
    │   │   └── unix_main.cpp
    │   └── windows
    │   │   ├── CMakeLists.txt
    │   │   ├── crashlog_win.cpp
    │   │   ├── font_win32.cpp
    │   │   ├── font_win32.h
    │   │   ├── library_loader_win.cpp
    │   │   ├── ottdres.rc.in
    │   │   ├── string_uniscribe.cpp
    │   │   ├── string_uniscribe.h
    │   │   ├── survey_win.cpp
    │   │   ├── win32.cpp
    │   │   ├── win32.h
    │   │   └── win32_main.cpp
    ├── osk_gui.cpp
    ├── palette.cpp
    ├── palette_func.h
    ├── pathfinder
    │   ├── CMakeLists.txt
    │   ├── follow_track.hpp
    │   ├── pathfinder_func.h
    │   ├── pathfinder_type.h
    │   ├── water_regions.cpp
    │   ├── water_regions.h
    │   └── yapf
    │   │   ├── CMakeLists.txt
    │   │   ├── nodelist.hpp
    │   │   ├── yapf.h
    │   │   ├── yapf.hpp
    │   │   ├── yapf_base.hpp
    │   │   ├── yapf_cache.h
    │   │   ├── yapf_common.hpp
    │   │   ├── yapf_costbase.hpp
    │   │   ├── yapf_costcache.hpp
    │   │   ├── yapf_costrail.hpp
    │   │   ├── yapf_destrail.hpp
    │   │   ├── yapf_node.hpp
    │   │   ├── yapf_node_rail.hpp
    │   │   ├── yapf_node_road.hpp
    │   │   ├── yapf_node_ship.hpp
    │   │   ├── yapf_rail.cpp
    │   │   ├── yapf_river_builder.cpp
    │   │   ├── yapf_river_builder.h
    │   │   ├── yapf_road.cpp
    │   │   ├── yapf_ship.cpp
    │   │   ├── yapf_ship_regions.cpp
    │   │   ├── yapf_ship_regions.h
    │   │   └── yapf_type.hpp
    ├── pbs.cpp
    ├── pbs.h
    ├── picker_func.h
    ├── picker_gui.cpp
    ├── picker_gui.h
    ├── progress.cpp
    ├── progress.h
    ├── provider_manager.h
    ├── querystring_gui.h
    ├── rail.cpp
    ├── rail.h
    ├── rail_cmd.cpp
    ├── rail_cmd.h
    ├── rail_gui.cpp
    ├── rail_gui.h
    ├── rail_map.h
    ├── rail_type.h
    ├── random_access_file.cpp
    ├── random_access_file_type.h
    ├── rev.cpp.in
    ├── rev.h
    ├── road.cpp
    ├── road.h
    ├── road_cmd.cpp
    ├── road_cmd.h
    ├── road_func.h
    ├── road_gui.cpp
    ├── road_gui.h
    ├── road_internal.h
    ├── road_map.cpp
    ├── road_map.h
    ├── road_type.h
    ├── roadstop.cpp
    ├── roadstop_base.h
    ├── roadveh.h
    ├── roadveh_cmd.cpp
    ├── roadveh_cmd.h
    ├── roadveh_gui.cpp
    ├── safeguards.h
    ├── saveload
    │   ├── CMakeLists.txt
    │   ├── afterload.cpp
    │   ├── ai_sl.cpp
    │   ├── airport_sl.cpp
    │   ├── animated_tile_sl.cpp
    │   ├── autoreplace_sl.cpp
    │   ├── cargomonitor_sl.cpp
    │   ├── cargopacket_sl.cpp
    │   ├── cheat_sl.cpp
    │   ├── company_sl.cpp
    │   ├── compat
    │   │   ├── CMakeLists.txt
    │   │   ├── ai_sl_compat.h
    │   │   ├── animated_tile_sl_compat.h
    │   │   ├── autoreplace_sl_compat.h
    │   │   ├── cargomonitor_sl_compat.h
    │   │   ├── cargopacket_sl_compat.h
    │   │   ├── cheat_sl_compat.h
    │   │   ├── company_sl_compat.h
    │   │   ├── depot_sl_compat.h
    │   │   ├── economy_sl_compat.h
    │   │   ├── engine_sl_compat.h
    │   │   ├── game_sl_compat.h
    │   │   ├── gamelog_sl_compat.h
    │   │   ├── goal_sl_compat.h
    │   │   ├── group_sl_compat.h
    │   │   ├── industry_sl_compat.h
    │   │   ├── labelmaps_sl_compat.h
    │   │   ├── linkgraph_sl_compat.h
    │   │   ├── map_sl_compat.h
    │   │   ├── misc_sl_compat.h
    │   │   ├── newgrf_sl_compat.h
    │   │   ├── object_sl_compat.h
    │   │   ├── order_sl_compat.h
    │   │   ├── settings_sl_compat.h
    │   │   ├── signs_sl_compat.h
    │   │   ├── station_sl_compat.h
    │   │   ├── storage_sl_compat.h
    │   │   ├── story_sl_compat.h
    │   │   ├── subsidy_sl_compat.h
    │   │   ├── town_sl_compat.h
    │   │   └── vehicle_sl_compat.h
    │   ├── depot_sl.cpp
    │   ├── economy_sl.cpp
    │   ├── engine_sl.cpp
    │   ├── game_sl.cpp
    │   ├── gamelog_sl.cpp
    │   ├── goal_sl.cpp
    │   ├── group_sl.cpp
    │   ├── industry_sl.cpp
    │   ├── labelmaps_sl.cpp
    │   ├── league_sl.cpp
    │   ├── linkgraph_sl.cpp
    │   ├── map_sl.cpp
    │   ├── misc_sl.cpp
    │   ├── newgrf_sl.cpp
    │   ├── newgrf_sl.h
    │   ├── object_sl.cpp
    │   ├── oldloader.cpp
    │   ├── oldloader.h
    │   ├── oldloader_sl.cpp
    │   ├── order_sl.cpp
    │   ├── randomizer_sl.cpp
    │   ├── saveload.cpp
    │   ├── saveload.h
    │   ├── saveload_error.hpp
    │   ├── saveload_filter.h
    │   ├── saveload_internal.h
    │   ├── settings_sl.cpp
    │   ├── signs_sl.cpp
    │   ├── station_sl.cpp
    │   ├── storage_sl.cpp
    │   ├── story_sl.cpp
    │   ├── strings_sl.cpp
    │   ├── subsidy_sl.cpp
    │   ├── town_sl.cpp
    │   ├── vehicle_sl.cpp
    │   ├── water_regions_sl.cpp
    │   └── waypoint_sl.cpp
    ├── screenshot.cpp
    ├── screenshot.h
    ├── screenshot_bmp.cpp
    ├── screenshot_gui.cpp
    ├── screenshot_gui.h
    ├── screenshot_pcx.cpp
    ├── screenshot_png.cpp
    ├── screenshot_type.h
    ├── script
    │   ├── CMakeLists.txt
    │   ├── api
    │   │   ├── CMakeLists.txt
    │   │   ├── Doxyfile_AI.in
    │   │   ├── Doxyfile_GS.in
    │   │   ├── ai
    │   │   │   └── ai_controller.sq.hpp
    │   │   ├── ai_changelog.hpp
    │   │   ├── doxygen_filter.awk
    │   │   ├── doxygen_filter.sh
    │   │   ├── game
    │   │   │   └── game_controller.sq.hpp
    │   │   ├── game_changelog.hpp
    │   │   ├── script_accounting.cpp
    │   │   ├── script_accounting.hpp
    │   │   ├── script_admin.cpp
    │   │   ├── script_admin.hpp
    │   │   ├── script_airport.cpp
    │   │   ├── script_airport.hpp
    │   │   ├── script_asyncmode.cpp
    │   │   ├── script_asyncmode.hpp
    │   │   ├── script_base.cpp
    │   │   ├── script_base.hpp
    │   │   ├── script_basestation.cpp
    │   │   ├── script_basestation.hpp
    │   │   ├── script_bridge.cpp
    │   │   ├── script_bridge.hpp
    │   │   ├── script_bridgelist.cpp
    │   │   ├── script_bridgelist.hpp
    │   │   ├── script_cargo.cpp
    │   │   ├── script_cargo.hpp
    │   │   ├── script_cargolist.cpp
    │   │   ├── script_cargolist.hpp
    │   │   ├── script_cargomonitor.cpp
    │   │   ├── script_cargomonitor.hpp
    │   │   ├── script_client.cpp
    │   │   ├── script_client.hpp
    │   │   ├── script_clientlist.cpp
    │   │   ├── script_clientlist.hpp
    │   │   ├── script_company.cpp
    │   │   ├── script_company.hpp
    │   │   ├── script_companymode.cpp
    │   │   ├── script_companymode.hpp
    │   │   ├── script_controller.cpp
    │   │   ├── script_controller.hpp
    │   │   ├── script_date.cpp
    │   │   ├── script_date.hpp
    │   │   ├── script_depotlist.cpp
    │   │   ├── script_depotlist.hpp
    │   │   ├── script_engine.cpp
    │   │   ├── script_engine.hpp
    │   │   ├── script_enginelist.cpp
    │   │   ├── script_enginelist.hpp
    │   │   ├── script_error.cpp
    │   │   ├── script_error.hpp
    │   │   ├── script_event.cpp
    │   │   ├── script_event.hpp
    │   │   ├── script_event_types.cpp
    │   │   ├── script_event_types.hpp
    │   │   ├── script_execmode.cpp
    │   │   ├── script_execmode.hpp
    │   │   ├── script_game.cpp
    │   │   ├── script_game.hpp
    │   │   ├── script_gamesettings.cpp
    │   │   ├── script_gamesettings.hpp
    │   │   ├── script_goal.cpp
    │   │   ├── script_goal.hpp
    │   │   ├── script_group.cpp
    │   │   ├── script_group.hpp
    │   │   ├── script_grouplist.cpp
    │   │   ├── script_grouplist.hpp
    │   │   ├── script_includes.hpp.in
    │   │   ├── script_industry.cpp
    │   │   ├── script_industry.hpp
    │   │   ├── script_industrylist.cpp
    │   │   ├── script_industrylist.hpp
    │   │   ├── script_industrytype.cpp
    │   │   ├── script_industrytype.hpp
    │   │   ├── script_industrytypelist.cpp
    │   │   ├── script_industrytypelist.hpp
    │   │   ├── script_info_docs.hpp
    │   │   ├── script_infrastructure.cpp
    │   │   ├── script_infrastructure.hpp
    │   │   ├── script_league.cpp
    │   │   ├── script_league.hpp
    │   │   ├── script_list.cpp
    │   │   ├── script_list.hpp
    │   │   ├── script_log.cpp
    │   │   ├── script_log.hpp
    │   │   ├── script_log_types.hpp
    │   │   ├── script_map.cpp
    │   │   ├── script_map.hpp
    │   │   ├── script_marine.cpp
    │   │   ├── script_marine.hpp
    │   │   ├── script_newgrf.cpp
    │   │   ├── script_newgrf.hpp
    │   │   ├── script_news.cpp
    │   │   ├── script_news.hpp
    │   │   ├── script_object.cpp
    │   │   ├── script_object.hpp
    │   │   ├── script_objecttype.cpp
    │   │   ├── script_objecttype.hpp
    │   │   ├── script_objecttypelist.cpp
    │   │   ├── script_objecttypelist.hpp
    │   │   ├── script_order.cpp
    │   │   ├── script_order.hpp
    │   │   ├── script_priorityqueue.cpp
    │   │   ├── script_priorityqueue.hpp
    │   │   ├── script_rail.cpp
    │   │   ├── script_rail.hpp
    │   │   ├── script_railtypelist.cpp
    │   │   ├── script_railtypelist.hpp
    │   │   ├── script_road.cpp
    │   │   ├── script_road.hpp
    │   │   ├── script_roadtypelist.cpp
    │   │   ├── script_roadtypelist.hpp
    │   │   ├── script_sign.cpp
    │   │   ├── script_sign.hpp
    │   │   ├── script_signlist.cpp
    │   │   ├── script_signlist.hpp
    │   │   ├── script_station.cpp
    │   │   ├── script_station.hpp
    │   │   ├── script_stationlist.cpp
    │   │   ├── script_stationlist.hpp
    │   │   ├── script_story_page.cpp
    │   │   ├── script_story_page.hpp
    │   │   ├── script_storypageelementlist.cpp
    │   │   ├── script_storypageelementlist.hpp
    │   │   ├── script_storypagelist.cpp
    │   │   ├── script_storypagelist.hpp
    │   │   ├── script_subsidy.cpp
    │   │   ├── script_subsidy.hpp
    │   │   ├── script_subsidylist.cpp
    │   │   ├── script_subsidylist.hpp
    │   │   ├── script_testmode.cpp
    │   │   ├── script_testmode.hpp
    │   │   ├── script_text.cpp
    │   │   ├── script_text.hpp
    │   │   ├── script_tile.cpp
    │   │   ├── script_tile.hpp
    │   │   ├── script_tilelist.cpp
    │   │   ├── script_tilelist.hpp
    │   │   ├── script_town.cpp
    │   │   ├── script_town.hpp
    │   │   ├── script_townlist.cpp
    │   │   ├── script_townlist.hpp
    │   │   ├── script_tunnel.cpp
    │   │   ├── script_tunnel.hpp
    │   │   ├── script_types.hpp
    │   │   ├── script_vehicle.cpp
    │   │   ├── script_vehicle.hpp
    │   │   ├── script_vehiclelist.cpp
    │   │   ├── script_vehiclelist.hpp
    │   │   ├── script_viewport.cpp
    │   │   ├── script_viewport.hpp
    │   │   ├── script_waypoint.cpp
    │   │   ├── script_waypoint.hpp
    │   │   ├── script_waypointlist.cpp
    │   │   ├── script_waypointlist.hpp
    │   │   ├── script_window.cpp
    │   │   ├── script_window.hpp.in
    │   │   └── squirrel_export.sq.hpp.in
    │   ├── script_cmd.h
    │   ├── script_config.cpp
    │   ├── script_config.hpp
    │   ├── script_fatalerror.hpp
    │   ├── script_gui.cpp
    │   ├── script_gui.h
    │   ├── script_info.cpp
    │   ├── script_info.hpp
    │   ├── script_info_dummy.cpp
    │   ├── script_instance.cpp
    │   ├── script_instance.hpp
    │   ├── script_scanner.cpp
    │   ├── script_scanner.hpp
    │   ├── script_storage.hpp
    │   ├── script_suspend.hpp
    │   ├── squirrel.cpp
    │   ├── squirrel.hpp
    │   ├── squirrel_class.hpp
    │   ├── squirrel_helper.hpp
    │   ├── squirrel_helper_type.hpp
    │   ├── squirrel_std.cpp
    │   └── squirrel_std.hpp
    ├── settingentry_gui.cpp
    ├── settingentry_gui.h
    ├── settings.cpp
    ├── settings_cmd.h
    ├── settings_func.h
    ├── settings_gui.cpp
    ├── settings_gui.h
    ├── settings_internal.h
    ├── settings_table.cpp
    ├── settings_table.h
    ├── settings_type.h
    ├── settingsgen
    │   ├── CMakeLists.txt
    │   └── settingsgen.cpp
    ├── ship.h
    ├── ship_cmd.cpp
    ├── ship_cmd.h
    ├── ship_gui.cpp
    ├── signal.cpp
    ├── signal_func.h
    ├── signal_type.h
    ├── signature.cpp
    ├── signature.h
    ├── signs.cpp
    ├── signs_base.h
    ├── signs_cmd.cpp
    ├── signs_cmd.h
    ├── signs_func.h
    ├── signs_gui.cpp
    ├── signs_type.h
    ├── slider.cpp
    ├── slider_func.h
    ├── slope_func.h
    ├── slope_type.h
    ├── smallmap_gui.cpp
    ├── smallmap_gui.h
    ├── social_integration.cpp
    ├── social_integration.h
    ├── sortlist_type.h
    ├── sound.cpp
    ├── sound
    │   ├── CMakeLists.txt
    │   ├── allegro_s.cpp
    │   ├── allegro_s.h
    │   ├── cocoa_s.cpp
    │   ├── cocoa_s.h
    │   ├── null_s.cpp
    │   ├── null_s.h
    │   ├── sdl2_s.cpp
    │   ├── sdl_s.h
    │   ├── sound_driver.hpp
    │   ├── win32_s.cpp
    │   ├── win32_s.h
    │   ├── xaudio2_s.cpp
    │   └── xaudio2_s.h
    ├── sound_func.h
    ├── sound_type.h
    ├── soundloader.cpp
    ├── soundloader_func.h
    ├── soundloader_opus.cpp
    ├── soundloader_raw.cpp
    ├── soundloader_type.h
    ├── soundloader_wav.cpp
    ├── source_type.h
    ├── sprite.cpp
    ├── sprite.h
    ├── spritecache.cpp
    ├── spritecache.h
    ├── spritecache_internal.h
    ├── spritecache_type.h
    ├── spriteloader
    │   ├── CMakeLists.txt
    │   ├── grf.cpp
    │   ├── grf.hpp
    │   ├── makeindexed.cpp
    │   ├── makeindexed.h
    │   ├── sprite_file.cpp
    │   ├── sprite_file_type.hpp
    │   └── spriteloader.hpp
    ├── station.cpp
    ├── station_base.h
    ├── station_cmd.cpp
    ├── station_cmd.h
    ├── station_func.h
    ├── station_gui.cpp
    ├── station_gui.h
    ├── station_kdtree.h
    ├── station_layout_type.h
    ├── station_map.h
    ├── station_type.h
    ├── statusbar_gui.cpp
    ├── statusbar_gui.h
    ├── stdafx.h
    ├── story.cpp
    ├── story_base.h
    ├── story_cmd.h
    ├── story_gui.cpp
    ├── story_type.h
    ├── strgen
    │   ├── CMakeLists.txt
    │   ├── strgen.cpp
    │   ├── strgen.h
    │   └── strgen_base.cpp
    ├── string.cpp
    ├── string_base.h
    ├── string_func.h
    ├── string_type.h
    ├── stringfilter.cpp
    ├── stringfilter_type.h
    ├── strings.cpp
    ├── strings_func.h
    ├── strings_internal.h
    ├── strings_type.h
    ├── subsidy.cpp
    ├── subsidy_base.h
    ├── subsidy_cmd.h
    ├── subsidy_func.h
    ├── subsidy_gui.cpp
    ├── subsidy_type.h
    ├── survey.cpp
    ├── survey.h
    ├── table
    │   ├── CMakeLists.txt
    │   ├── airport_defaults.h
    │   ├── airport_movement.h
    │   ├── airporttile_ids.h
    │   ├── airporttiles.h
    │   ├── animcursors.h
    │   ├── autorail.h
    │   ├── bridge_land.h
    │   ├── build_industry.h
    │   ├── cargo_const.h
    │   ├── clear_land.h
    │   ├── company_face.h
    │   ├── control_codes.h
    │   ├── elrail_data.h
    │   ├── engines.h
    │   ├── genland.h
    │   ├── heightmap_colours.h
    │   ├── industry_land.h
    │   ├── landscape_sprite.h
    │   ├── newgrf_debug_data.h
    │   ├── object_land.h
    │   ├── opengl_shader.h
    │   ├── palette_convert.h
    │   ├── palettes.h
    │   ├── pricebase.h
    │   ├── railtypes.h
    │   ├── road_land.h
    │   ├── roadtypes.h
    │   ├── roadveh_movement.h
    │   ├── settings.h.postamble
    │   ├── settings.h.preamble
    │   ├── settings
    │   │   ├── CMakeLists.txt
    │   │   ├── company_settings.ini
    │   │   ├── currency_settings.ini
    │   │   ├── difficulty_settings.ini
    │   │   ├── economy_settings.ini
    │   │   ├── game_settings.ini
    │   │   ├── gui_settings.ini
    │   │   ├── linkgraph_settings.ini
    │   │   ├── locale_settings.ini
    │   │   ├── misc_settings.ini
    │   │   ├── multimedia_settings.ini
    │   │   ├── network_private_settings.ini
    │   │   ├── network_secrets_settings.ini
    │   │   ├── network_settings.ini
    │   │   ├── news_display_settings.ini
    │   │   ├── old_gameopt_settings.ini
    │   │   ├── pathfinding_settings.ini
    │   │   ├── script_settings.ini
    │   │   ├── win32_settings.ini
    │   │   ├── window_settings.ini
    │   │   └── world_settings.ini
    │   ├── signal_data.h
    │   ├── sprites.h
    │   ├── station_land.h
    │   ├── strgen_tables.h
    │   ├── string_colours.h
    │   ├── town_land.h
    │   ├── townname.h
    │   ├── track_data.h
    │   ├── track_land.h
    │   ├── train_sprites.h
    │   ├── tree_land.h
    │   ├── unicode.h
    │   └── water_land.h
    ├── tar_type.h
    ├── terraform_cmd.cpp
    ├── terraform_cmd.h
    ├── terraform_gui.cpp
    ├── terraform_gui.h
    ├── tests
    │   ├── CMakeLists.txt
    │   ├── alternating_iterator.cpp
    │   ├── bitmath_func.cpp
    │   ├── enum_over_optimisation.cpp
    │   ├── flatset_type.cpp
    │   ├── history_func.cpp
    │   ├── landscape_partial_pixel_z.cpp
    │   ├── math_func.cpp
    │   ├── mock_environment.h
    │   ├── mock_fontcache.h
    │   ├── mock_spritecache.cpp
    │   ├── mock_spritecache.h
    │   ├── string_builder.cpp
    │   ├── string_consumer.cpp
    │   ├── string_func.cpp
    │   ├── string_inplace.cpp
    │   ├── test_main.cpp
    │   ├── test_network_crypto.cpp
    │   ├── test_script_admin.cpp
    │   ├── test_window_desc.cpp
    │   ├── tilearea.cpp
    │   └── utf8.cpp
    ├── textbuf.cpp
    ├── textbuf_gui.h
    ├── textbuf_type.h
    ├── texteff.cpp
    ├── texteff.hpp
    ├── textfile_gui.cpp
    ├── textfile_gui.h
    ├── textfile_type.h
    ├── tgp.cpp
    ├── tgp.h
    ├── thread.h
    ├── tile_cmd.h
    ├── tile_map.cpp
    ├── tile_map.h
    ├── tile_type.h
    ├── tilearea.cpp
    ├── tilearea_type.h
    ├── tilehighlight_func.h
    ├── tilehighlight_type.h
    ├── timer
    │   ├── CMakeLists.txt
    │   ├── timer.h
    │   ├── timer_game_calendar.cpp
    │   ├── timer_game_calendar.h
    │   ├── timer_game_common.cpp
    │   ├── timer_game_common.h
    │   ├── timer_game_economy.cpp
    │   ├── timer_game_economy.h
    │   ├── timer_game_realtime.cpp
    │   ├── timer_game_realtime.h
    │   ├── timer_game_tick.cpp
    │   ├── timer_game_tick.h
    │   ├── timer_manager.h
    │   ├── timer_window.cpp
    │   └── timer_window.h
    ├── timetable.h
    ├── timetable_cmd.cpp
    ├── timetable_cmd.h
    ├── timetable_gui.cpp
    ├── toolbar_gui.cpp
    ├── toolbar_gui.h
    ├── town.h
    ├── town_cmd.cpp
    ├── town_cmd.h
    ├── town_gui.cpp
    ├── town_kdtree.h
    ├── town_map.h
    ├── town_type.h
    ├── townname.cpp
    ├── townname_func.h
    ├── townname_type.h
    ├── track_func.h
    ├── track_type.h
    ├── train.h
    ├── train_cmd.cpp
    ├── train_cmd.h
    ├── train_gui.cpp
    ├── transparency.h
    ├── transparency_gui.cpp
    ├── transparency_gui.h
    ├── transport_type.h
    ├── tree_cmd.cpp
    ├── tree_cmd.h
    ├── tree_gui.cpp
    ├── tree_map.h
    ├── tunnel_map.cpp
    ├── tunnel_map.h
    ├── tunnelbridge.h
    ├── tunnelbridge_cmd.cpp
    ├── tunnelbridge_cmd.h
    ├── tunnelbridge_map.h
    ├── vehicle.cpp
    ├── vehicle_base.h
    ├── vehicle_cmd.cpp
    ├── vehicle_cmd.h
    ├── vehicle_func.h
    ├── vehicle_gui.cpp
    ├── vehicle_gui.h
    ├── vehicle_gui_base.h
    ├── vehicle_type.h
    ├── vehiclelist.cpp
    ├── vehiclelist.h
    ├── vehiclelist_cmd.h
    ├── vehiclelist_func.h
    ├── video
    │   ├── CMakeLists.txt
    │   ├── allegro_v.cpp
    │   ├── allegro_v.h
    │   ├── cocoa
    │   │   ├── CMakeLists.txt
    │   │   ├── cocoa_keys.h
    │   │   ├── cocoa_ogl.h
    │   │   ├── cocoa_ogl.mm
    │   │   ├── cocoa_v.h
    │   │   ├── cocoa_v.mm
    │   │   ├── cocoa_wnd.h
    │   │   └── cocoa_wnd.mm
    │   ├── dedicated_v.cpp
    │   ├── dedicated_v.h
    │   ├── null_v.cpp
    │   ├── null_v.h
    │   ├── opengl.cpp
    │   ├── opengl.h
    │   ├── sdl2_default_v.cpp
    │   ├── sdl2_default_v.h
    │   ├── sdl2_opengl_v.cpp
    │   ├── sdl2_opengl_v.h
    │   ├── sdl2_v.cpp
    │   ├── sdl2_v.h
    │   ├── video_driver.cpp
    │   ├── video_driver.hpp
    │   ├── win32_v.cpp
    │   └── win32_v.h
    ├── viewport.cpp
    ├── viewport_cmd.h
    ├── viewport_func.h
    ├── viewport_gui.cpp
    ├── viewport_kdtree.h
    ├── viewport_sprite_sorter.h
    ├── viewport_sprite_sorter_sse4.cpp
    ├── viewport_type.h
    ├── void_cmd.cpp
    ├── void_map.h
    ├── water.h
    ├── water_cmd.cpp
    ├── water_cmd.h
    ├── water_map.h
    ├── waypoint.cpp
    ├── waypoint_base.h
    ├── waypoint_cmd.cpp
    ├── waypoint_cmd.h
    ├── waypoint_func.h
    ├── waypoint_gui.cpp
    ├── widget.cpp
    ├── widget_type.h
    ├── widgets
    │   ├── CMakeLists.txt
    │   ├── ai_widget.h
    │   ├── airport_widget.h
    │   ├── autoreplace_widget.h
    │   ├── bootstrap_widget.h
    │   ├── bridge_widget.h
    │   ├── build_vehicle_widget.h
    │   ├── cheat_widget.h
    │   ├── company_widget.h
    │   ├── console_widget.h
    │   ├── date_widget.h
    │   ├── depot_widget.h
    │   ├── dock_widget.h
    │   ├── dropdown_widget.h
    │   ├── engine_widget.h
    │   ├── error_widget.h
    │   ├── fios_widget.h
    │   ├── framerate_widget.h
    │   ├── game_widget.h
    │   ├── genworld_widget.h
    │   ├── goal_widget.h
    │   ├── graph_widget.h
    │   ├── group_widget.h
    │   ├── help_widget.h
    │   ├── highscore_widget.h
    │   ├── industry_widget.h
    │   ├── intro_widget.h
    │   ├── league_widget.h
    │   ├── link_graph_legend_widget.h
    │   ├── main_widget.h
    │   ├── misc_widget.h
    │   ├── music_widget.h
    │   ├── network_chat_widget.h
    │   ├── network_content_widget.h
    │   ├── network_widget.h
    │   ├── newgrf_debug_widget.h
    │   ├── newgrf_widget.h
    │   ├── news_widget.h
    │   ├── object_widget.h
    │   ├── order_widget.h
    │   ├── osk_widget.h
    │   ├── picker_widget.h
    │   ├── rail_widget.h
    │   ├── road_widget.h
    │   ├── screenshot_widget.h
    │   ├── script_widget.h
    │   ├── settings_widget.h
    │   ├── sign_widget.h
    │   ├── smallmap_widget.h
    │   ├── station_widget.h
    │   ├── statusbar_widget.h
    │   ├── story_widget.h
    │   ├── subsidy_widget.h
    │   ├── terraform_widget.h
    │   ├── timetable_widget.h
    │   ├── toolbar_widget.h
    │   ├── town_widget.h
    │   ├── transparency_widget.h
    │   ├── tree_widget.h
    │   ├── vehicle_widget.h
    │   ├── viewport_widget.h
    │   └── waypoint_widget.h
    ├── window.cpp
    ├── window_func.h
    ├── window_gui.h
    ├── window_type.h
    ├── zoom_func.h
    └── zoom_type.h
└── vcpkg.json


/.dorpsgek.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/.dorpsgek.yml


--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/.editorconfig


--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | custom: https://www.openttd.org/donate.html
2 | 


--------------------------------------------------------------------------------
/.github/changelog.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/.github/changelog.py


--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/.github/dependabot.yml


--------------------------------------------------------------------------------
/.github/unused-strings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/.github/unused-strings.py


--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/.gitignore


--------------------------------------------------------------------------------
/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/CMakeLists.txt


--------------------------------------------------------------------------------
/CODINGSTYLE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/CODINGSTYLE.md


--------------------------------------------------------------------------------
/COMPILING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/COMPILING.md


--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/CONTRIBUTING.md


--------------------------------------------------------------------------------
/COPYING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/COPYING.md


--------------------------------------------------------------------------------
/CPackProperties.cmake.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/CPackProperties.cmake.in


--------------------------------------------------------------------------------
/CREDITS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/CREDITS.md


--------------------------------------------------------------------------------
/Doxyfile.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/Doxyfile.in


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/README.md


--------------------------------------------------------------------------------
/bin/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/CMakeLists.txt


--------------------------------------------------------------------------------
/bin/ai/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/CMakeLists.txt


--------------------------------------------------------------------------------
/bin/ai/compat_0.7.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_0.7.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.0.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.0.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.1.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.1.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.10.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.10.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.11.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.11.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.2.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.2.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.3.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.3.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.4.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.4.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.5.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.5.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.6.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.6.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.7.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.7.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.8.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.8.nut


--------------------------------------------------------------------------------
/bin/ai/compat_1.9.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_1.9.nut


--------------------------------------------------------------------------------
/bin/ai/compat_12.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_12.nut


--------------------------------------------------------------------------------
/bin/ai/compat_13.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_13.nut


--------------------------------------------------------------------------------
/bin/ai/compat_14.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_14.nut


--------------------------------------------------------------------------------
/bin/ai/compat_15.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/ai/compat_15.nut


--------------------------------------------------------------------------------
/bin/game/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/CMakeLists.txt


--------------------------------------------------------------------------------
/bin/game/compat_1.10.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.10.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.11.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.11.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.2.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.2.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.3.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.3.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.4.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.4.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.5.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.5.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.6.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.6.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.7.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.7.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.8.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.8.nut


--------------------------------------------------------------------------------
/bin/game/compat_1.9.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_1.9.nut


--------------------------------------------------------------------------------
/bin/game/compat_12.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_12.nut


--------------------------------------------------------------------------------
/bin/game/compat_13.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_13.nut


--------------------------------------------------------------------------------
/bin/game/compat_14.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_14.nut


--------------------------------------------------------------------------------
/bin/game/compat_15.nut:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/game/compat_15.nut


--------------------------------------------------------------------------------
/bin/scripts/game_start.scr.example:
--------------------------------------------------------------------------------
1 | start_ai MyAI
2 | 
3 | 


--------------------------------------------------------------------------------
/bin/scripts/on_server_connect.scr.example:
--------------------------------------------------------------------------------
1 | # Show a MOTD
2 | say "Welcome..."
3 | 


--------------------------------------------------------------------------------
/bin/scripts/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/bin/scripts/readme.txt


--------------------------------------------------------------------------------
/changelog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/changelog.md


--------------------------------------------------------------------------------
/cmake/Catch.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/Catch.cmake


--------------------------------------------------------------------------------
/cmake/CatchAddTests.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/CatchAddTests.cmake


--------------------------------------------------------------------------------
/cmake/CompileFlags.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/CompileFlags.cmake


--------------------------------------------------------------------------------
/cmake/FindAllegro.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindAllegro.cmake


--------------------------------------------------------------------------------
/cmake/FindEditbin.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindEditbin.cmake


--------------------------------------------------------------------------------
/cmake/FindFluidsynth.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindFluidsynth.cmake


--------------------------------------------------------------------------------
/cmake/FindFontconfig.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindFontconfig.cmake


--------------------------------------------------------------------------------
/cmake/FindGrfcodec.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindGrfcodec.cmake


--------------------------------------------------------------------------------
/cmake/FindHarfbuzz.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindHarfbuzz.cmake


--------------------------------------------------------------------------------
/cmake/FindICU.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindICU.cmake


--------------------------------------------------------------------------------
/cmake/FindIconv.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindIconv.cmake


--------------------------------------------------------------------------------
/cmake/FindLZO.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindLZO.cmake


--------------------------------------------------------------------------------
/cmake/FindOgg.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindOgg.cmake


--------------------------------------------------------------------------------
/cmake/FindOpus.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindOpus.cmake


--------------------------------------------------------------------------------
/cmake/FindOpusFile.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindOpusFile.cmake


--------------------------------------------------------------------------------
/cmake/FindPandoc.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindPandoc.cmake


--------------------------------------------------------------------------------
/cmake/FindSSE.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindSSE.cmake


--------------------------------------------------------------------------------
/cmake/FindXaudio2.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/FindXaudio2.cmake


--------------------------------------------------------------------------------
/cmake/LinkPackage.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/LinkPackage.cmake


--------------------------------------------------------------------------------
/cmake/MSVCFilters.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/MSVCFilters.cmake


--------------------------------------------------------------------------------
/cmake/Options.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/Options.cmake


--------------------------------------------------------------------------------
/cmake/PackageBundle.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/PackageBundle.cmake


--------------------------------------------------------------------------------
/cmake/PackageDeb.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/PackageDeb.cmake


--------------------------------------------------------------------------------
/cmake/PackageNSIS.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/PackageNSIS.cmake


--------------------------------------------------------------------------------
/cmake/PackageRPM.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/PackageRPM.cmake


--------------------------------------------------------------------------------
/cmake/SourceList.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/SourceList.cmake


--------------------------------------------------------------------------------
/cmake/Static.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/cmake/Static.cmake


--------------------------------------------------------------------------------
/docs/admin_network.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/admin_network.md


--------------------------------------------------------------------------------
/docs/debugging_desyncs.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/debugging_desyncs.md


--------------------------------------------------------------------------------
/docs/desync.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/desync.md


--------------------------------------------------------------------------------
/docs/eints.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/eints.md


--------------------------------------------------------------------------------
/docs/elrail.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/elrail.svg


--------------------------------------------------------------------------------
/docs/elrail_tile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/elrail_tile.png


--------------------------------------------------------------------------------
/docs/elrail_track.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/elrail_track.png


--------------------------------------------------------------------------------
/docs/fonts.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/fonts.md


--------------------------------------------------------------------------------
/docs/game_coordinator.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/game_coordinator.md


--------------------------------------------------------------------------------
/docs/landscape.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/landscape.html


--------------------------------------------------------------------------------
/docs/landscape_grid.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/landscape_grid.html


--------------------------------------------------------------------------------
/docs/linkgraph.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/linkgraph.md


--------------------------------------------------------------------------------
/docs/multiplayer.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/multiplayer.md


--------------------------------------------------------------------------------
/docs/obg_format.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/obg_format.txt


--------------------------------------------------------------------------------
/docs/obm_format.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/obm_format.txt


--------------------------------------------------------------------------------
/docs/obs_format.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/obs_format.txt


--------------------------------------------------------------------------------
/docs/openttd.6:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/openttd.6


--------------------------------------------------------------------------------
/docs/palettes/openttd.gpl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/palettes/openttd.gpl


--------------------------------------------------------------------------------
/docs/palettes/palette.act:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/palettes/palette.act


--------------------------------------------------------------------------------
/docs/releasing_openttd.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/releasing_openttd.md


--------------------------------------------------------------------------------
/docs/savegame_format.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/savegame_format.md


--------------------------------------------------------------------------------
/docs/symbol_server.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/symbol_server.md


--------------------------------------------------------------------------------
/docs/tileh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/docs/tileh.png


--------------------------------------------------------------------------------
/known-bugs.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/known-bugs.md


--------------------------------------------------------------------------------
/media/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/CMakeLists.txt


--------------------------------------------------------------------------------
/media/baseset/no_music.obm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/no_music.obm


--------------------------------------------------------------------------------
/media/baseset/no_sound.obs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/no_sound.obs


--------------------------------------------------------------------------------
/media/baseset/openttd.grf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/openttd.grf


--------------------------------------------------------------------------------
/media/baseset/openttd.grf.hash:
--------------------------------------------------------------------------------
1 | c56aad31380c077d619e124bd87c8270
2 | 


--------------------------------------------------------------------------------
/media/baseset/opntitle.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/opntitle.dat


--------------------------------------------------------------------------------
/media/baseset/orig_dos.obg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_dos.obg


--------------------------------------------------------------------------------
/media/baseset/orig_dos.obm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_dos.obm


--------------------------------------------------------------------------------
/media/baseset/orig_dos.obs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_dos.obs


--------------------------------------------------------------------------------
/media/baseset/orig_extra.grf.hash:
--------------------------------------------------------------------------------
1 | 5fdc049a7a0ada4c280239f15bc38174
2 | 


--------------------------------------------------------------------------------
/media/baseset/orig_tto.obm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_tto.obm


--------------------------------------------------------------------------------
/media/baseset/orig_win.obg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_win.obg


--------------------------------------------------------------------------------
/media/baseset/orig_win.obm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_win.obm


--------------------------------------------------------------------------------
/media/baseset/orig_win.obs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/baseset/orig_win.obs


--------------------------------------------------------------------------------
/media/openttd.1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.1024.png


--------------------------------------------------------------------------------
/media/openttd.128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.128.png


--------------------------------------------------------------------------------
/media/openttd.16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.16.png


--------------------------------------------------------------------------------
/media/openttd.2048.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.2048.png


--------------------------------------------------------------------------------
/media/openttd.256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.256.png


--------------------------------------------------------------------------------
/media/openttd.32.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.32.bmp


--------------------------------------------------------------------------------
/media/openttd.32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.32.png


--------------------------------------------------------------------------------
/media/openttd.32.xpm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.32.xpm


--------------------------------------------------------------------------------
/media/openttd.48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.48.png


--------------------------------------------------------------------------------
/media/openttd.512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.512.png


--------------------------------------------------------------------------------
/media/openttd.64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.64.png


--------------------------------------------------------------------------------
/media/openttd.64.xpm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.64.xpm


--------------------------------------------------------------------------------
/media/openttd.desktop:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.desktop


--------------------------------------------------------------------------------
/media/openttd.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/media/openttd.svg


--------------------------------------------------------------------------------
/os/emscripten/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/emscripten/Dockerfile


--------------------------------------------------------------------------------
/os/emscripten/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/emscripten/README.md


--------------------------------------------------------------------------------
/os/emscripten/loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/emscripten/loading.png


--------------------------------------------------------------------------------
/os/emscripten/pre.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/emscripten/pre.js


--------------------------------------------------------------------------------
/os/emscripten/shell.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/emscripten/shell.html


--------------------------------------------------------------------------------
/os/gog/linux.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/gog/linux.json


--------------------------------------------------------------------------------
/os/gog/macos.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/gog/macos.json


--------------------------------------------------------------------------------
/os/gog/windows.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/gog/windows.json


--------------------------------------------------------------------------------
/os/macosx/Info.plist.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/macosx/Info.plist.in


--------------------------------------------------------------------------------
/os/macosx/notarize.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/macosx/notarize.sh


--------------------------------------------------------------------------------
/os/macosx/openttd.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/macosx/openttd.icns


--------------------------------------------------------------------------------
/os/macosx/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/macosx/splash.png


--------------------------------------------------------------------------------
/os/steam/release.vdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/steam/release.vdf


--------------------------------------------------------------------------------
/os/windows/nsis-top.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/windows/nsis-top.bmp


--------------------------------------------------------------------------------
/os/windows/openttd.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/windows/openttd.ico


--------------------------------------------------------------------------------
/os/windows/sign.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 | pwsh -File "%~dp0sign_azure.ps1" %1
3 | 


--------------------------------------------------------------------------------
/os/windows/sign_azure.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/os/windows/sign_azure.ps1


--------------------------------------------------------------------------------
/os/windows/winstore/generate-assets.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 | powershell -File "%~dp0generate-assets.ps1"
3 | 


--------------------------------------------------------------------------------
/regression/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/regression/CMakeLists.txt


--------------------------------------------------------------------------------
/regression/regression.cfg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/regression/regression.cfg


--------------------------------------------------------------------------------
/src/3rdparty/catch2/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_files(
2 |     catch.hpp
3 | )
4 | 


--------------------------------------------------------------------------------
/src/3rdparty/fmt/args.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/args.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/base.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/chrono.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/chrono.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/color.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/color.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/compile.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/compile.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/core.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/core.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/format.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/format.cc


--------------------------------------------------------------------------------
/src/3rdparty/fmt/format.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/format.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/os.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/os.cc


--------------------------------------------------------------------------------
/src/3rdparty/fmt/os.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/os.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/ostream.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/ostream.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/printf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/printf.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/ranges.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/ranges.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/std.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/std.h


--------------------------------------------------------------------------------
/src/3rdparty/fmt/xchar.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/fmt/xchar.h


--------------------------------------------------------------------------------
/src/3rdparty/icu/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/icu/LICENSE


--------------------------------------------------------------------------------
/src/3rdparty/md5/md5.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/md5/md5.cpp


--------------------------------------------------------------------------------
/src/3rdparty/md5/md5.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/3rdparty/md5/md5.h


--------------------------------------------------------------------------------
/src/3rdparty/nlohmann/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_files(
2 |     json.hpp
3 | )
4 | 


--------------------------------------------------------------------------------
/src/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/CMakeLists.txt


--------------------------------------------------------------------------------
/src/ai/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/CMakeLists.txt


--------------------------------------------------------------------------------
/src/ai/ai.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai.hpp


--------------------------------------------------------------------------------
/src/ai/ai_config.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_config.cpp


--------------------------------------------------------------------------------
/src/ai/ai_config.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_config.hpp


--------------------------------------------------------------------------------
/src/ai/ai_core.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_core.cpp


--------------------------------------------------------------------------------
/src/ai/ai_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_gui.cpp


--------------------------------------------------------------------------------
/src/ai/ai_gui.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_gui.hpp


--------------------------------------------------------------------------------
/src/ai/ai_info.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_info.cpp


--------------------------------------------------------------------------------
/src/ai/ai_info.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_info.hpp


--------------------------------------------------------------------------------
/src/ai/ai_instance.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_instance.cpp


--------------------------------------------------------------------------------
/src/ai/ai_instance.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_instance.hpp


--------------------------------------------------------------------------------
/src/ai/ai_scanner.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_scanner.cpp


--------------------------------------------------------------------------------
/src/ai/ai_scanner.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ai/ai_scanner.hpp


--------------------------------------------------------------------------------
/src/aircraft.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/aircraft.h


--------------------------------------------------------------------------------
/src/aircraft_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/aircraft_cmd.cpp


--------------------------------------------------------------------------------
/src/aircraft_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/aircraft_cmd.h


--------------------------------------------------------------------------------
/src/aircraft_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/aircraft_gui.cpp


--------------------------------------------------------------------------------
/src/airport.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/airport.cpp


--------------------------------------------------------------------------------
/src/airport.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/airport.h


--------------------------------------------------------------------------------
/src/airport_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/airport_cmd.h


--------------------------------------------------------------------------------
/src/airport_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/airport_gui.cpp


--------------------------------------------------------------------------------
/src/animated_tile.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/animated_tile.cpp


--------------------------------------------------------------------------------
/src/animated_tile_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/animated_tile_func.h


--------------------------------------------------------------------------------
/src/animated_tile_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/animated_tile_map.h


--------------------------------------------------------------------------------
/src/articulated_vehicles.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/articulated_vehicles.h


--------------------------------------------------------------------------------
/src/autocompletion.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autocompletion.cpp


--------------------------------------------------------------------------------
/src/autocompletion.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autocompletion.h


--------------------------------------------------------------------------------
/src/autoreplace.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace.cpp


--------------------------------------------------------------------------------
/src/autoreplace_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_base.h


--------------------------------------------------------------------------------
/src/autoreplace_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_cmd.cpp


--------------------------------------------------------------------------------
/src/autoreplace_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_cmd.h


--------------------------------------------------------------------------------
/src/autoreplace_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_func.h


--------------------------------------------------------------------------------
/src/autoreplace_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_gui.cpp


--------------------------------------------------------------------------------
/src/autoreplace_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_gui.h


--------------------------------------------------------------------------------
/src/autoreplace_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoreplace_type.h


--------------------------------------------------------------------------------
/src/autoslope.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/autoslope.h


--------------------------------------------------------------------------------
/src/base_consist.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_consist.cpp


--------------------------------------------------------------------------------
/src/base_consist.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_consist.h


--------------------------------------------------------------------------------
/src/base_media_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_media_base.h


--------------------------------------------------------------------------------
/src/base_media_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_media_func.h


--------------------------------------------------------------------------------
/src/base_media_graphics.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_media_graphics.h


--------------------------------------------------------------------------------
/src/base_media_music.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_media_music.h


--------------------------------------------------------------------------------
/src/base_media_sounds.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_media_sounds.h


--------------------------------------------------------------------------------
/src/base_station_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/base_station_base.h


--------------------------------------------------------------------------------
/src/bitmap_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bitmap_type.h


--------------------------------------------------------------------------------
/src/blitter/32bpp_anim.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_anim.cpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_anim.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_anim.hpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_base.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_base.cpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_base.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_base.hpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_sse2.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_sse2.cpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_sse2.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_sse2.hpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_sse4.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_sse4.cpp


--------------------------------------------------------------------------------
/src/blitter/32bpp_sse4.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/32bpp_sse4.hpp


--------------------------------------------------------------------------------
/src/blitter/40bpp_anim.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/40bpp_anim.cpp


--------------------------------------------------------------------------------
/src/blitter/40bpp_anim.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/40bpp_anim.hpp


--------------------------------------------------------------------------------
/src/blitter/8bpp_base.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/8bpp_base.cpp


--------------------------------------------------------------------------------
/src/blitter/8bpp_base.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/8bpp_base.hpp


--------------------------------------------------------------------------------
/src/blitter/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/CMakeLists.txt


--------------------------------------------------------------------------------
/src/blitter/base.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/base.hpp


--------------------------------------------------------------------------------
/src/blitter/common.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/common.hpp


--------------------------------------------------------------------------------
/src/blitter/factory.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/factory.hpp


--------------------------------------------------------------------------------
/src/blitter/null.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/null.cpp


--------------------------------------------------------------------------------
/src/blitter/null.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/blitter/null.hpp


--------------------------------------------------------------------------------
/src/bmp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bmp.cpp


--------------------------------------------------------------------------------
/src/bmp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bmp.h


--------------------------------------------------------------------------------
/src/bootstrap_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bootstrap_gui.cpp


--------------------------------------------------------------------------------
/src/bridge.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bridge.h


--------------------------------------------------------------------------------
/src/bridge_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bridge_gui.cpp


--------------------------------------------------------------------------------
/src/bridge_map.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bridge_map.cpp


--------------------------------------------------------------------------------
/src/bridge_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bridge_map.h


--------------------------------------------------------------------------------
/src/bridge_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/bridge_type.h


--------------------------------------------------------------------------------
/src/build_vehicle_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/build_vehicle_gui.cpp


--------------------------------------------------------------------------------
/src/cachecheck.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cachecheck.cpp


--------------------------------------------------------------------------------
/src/cargo_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargo_type.h


--------------------------------------------------------------------------------
/src/cargoaction.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargoaction.cpp


--------------------------------------------------------------------------------
/src/cargoaction.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargoaction.h


--------------------------------------------------------------------------------
/src/cargomonitor.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargomonitor.cpp


--------------------------------------------------------------------------------
/src/cargomonitor.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargomonitor.h


--------------------------------------------------------------------------------
/src/cargopacket.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargopacket.cpp


--------------------------------------------------------------------------------
/src/cargopacket.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargopacket.h


--------------------------------------------------------------------------------
/src/cargotype.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargotype.cpp


--------------------------------------------------------------------------------
/src/cargotype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cargotype.h


--------------------------------------------------------------------------------
/src/cheat.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cheat.cpp


--------------------------------------------------------------------------------
/src/cheat_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cheat_func.h


--------------------------------------------------------------------------------
/src/cheat_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cheat_gui.cpp


--------------------------------------------------------------------------------
/src/cheat_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cheat_type.h


--------------------------------------------------------------------------------
/src/clear_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/clear_cmd.cpp


--------------------------------------------------------------------------------
/src/clear_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/clear_func.h


--------------------------------------------------------------------------------
/src/clear_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/clear_map.h


--------------------------------------------------------------------------------
/src/command.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/command.cpp


--------------------------------------------------------------------------------
/src/command_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/command_func.h


--------------------------------------------------------------------------------
/src/command_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/command_type.h


--------------------------------------------------------------------------------
/src/company_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_base.h


--------------------------------------------------------------------------------
/src/company_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_cmd.cpp


--------------------------------------------------------------------------------
/src/company_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_cmd.h


--------------------------------------------------------------------------------
/src/company_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_func.h


--------------------------------------------------------------------------------
/src/company_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_gui.cpp


--------------------------------------------------------------------------------
/src/company_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_gui.h


--------------------------------------------------------------------------------
/src/company_manager_face.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_manager_face.h


--------------------------------------------------------------------------------
/src/company_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/company_type.h


--------------------------------------------------------------------------------
/src/console.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console.cpp


--------------------------------------------------------------------------------
/src/console_cmds.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console_cmds.cpp


--------------------------------------------------------------------------------
/src/console_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console_func.h


--------------------------------------------------------------------------------
/src/console_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console_gui.cpp


--------------------------------------------------------------------------------
/src/console_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console_gui.h


--------------------------------------------------------------------------------
/src/console_internal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console_internal.h


--------------------------------------------------------------------------------
/src/console_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/console_type.h


--------------------------------------------------------------------------------
/src/core/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/CMakeLists.txt


--------------------------------------------------------------------------------
/src/core/alloc_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/alloc_type.hpp


--------------------------------------------------------------------------------
/src/core/backup_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/backup_type.hpp


--------------------------------------------------------------------------------
/src/core/bitmath_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/bitmath_func.hpp


--------------------------------------------------------------------------------
/src/core/endian_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/endian_func.hpp


--------------------------------------------------------------------------------
/src/core/enum_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/enum_type.hpp


--------------------------------------------------------------------------------
/src/core/flatset_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/flatset_type.hpp


--------------------------------------------------------------------------------
/src/core/format.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/format.hpp


--------------------------------------------------------------------------------
/src/core/geometry_func.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/geometry_func.cpp


--------------------------------------------------------------------------------
/src/core/geometry_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/geometry_func.hpp


--------------------------------------------------------------------------------
/src/core/geometry_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/geometry_type.hpp


--------------------------------------------------------------------------------
/src/core/kdtree.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/kdtree.hpp


--------------------------------------------------------------------------------
/src/core/math_func.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/math_func.cpp


--------------------------------------------------------------------------------
/src/core/math_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/math_func.hpp


--------------------------------------------------------------------------------
/src/core/multimap.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/multimap.hpp


--------------------------------------------------------------------------------
/src/core/pool_func.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/pool_func.cpp


--------------------------------------------------------------------------------
/src/core/pool_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/pool_func.hpp


--------------------------------------------------------------------------------
/src/core/pool_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/pool_type.hpp


--------------------------------------------------------------------------------
/src/core/random_func.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/random_func.cpp


--------------------------------------------------------------------------------
/src/core/random_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/random_func.hpp


--------------------------------------------------------------------------------
/src/core/utf8.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/utf8.cpp


--------------------------------------------------------------------------------
/src/core/utf8.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/core/utf8.hpp


--------------------------------------------------------------------------------
/src/cpu.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cpu.cpp


--------------------------------------------------------------------------------
/src/cpu.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/cpu.h


--------------------------------------------------------------------------------
/src/crashlog.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/crashlog.cpp


--------------------------------------------------------------------------------
/src/crashlog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/crashlog.h


--------------------------------------------------------------------------------
/src/currency.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/currency.cpp


--------------------------------------------------------------------------------
/src/currency.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/currency.h


--------------------------------------------------------------------------------
/src/date_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/date_gui.cpp


--------------------------------------------------------------------------------
/src/date_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/date_gui.h


--------------------------------------------------------------------------------
/src/debug.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/debug.cpp


--------------------------------------------------------------------------------
/src/debug.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/debug.h


--------------------------------------------------------------------------------
/src/dedicated.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dedicated.cpp


--------------------------------------------------------------------------------
/src/depot.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot.cpp


--------------------------------------------------------------------------------
/src/depot_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_base.h


--------------------------------------------------------------------------------
/src/depot_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_cmd.cpp


--------------------------------------------------------------------------------
/src/depot_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_cmd.h


--------------------------------------------------------------------------------
/src/depot_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_func.h


--------------------------------------------------------------------------------
/src/depot_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_gui.cpp


--------------------------------------------------------------------------------
/src/depot_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_map.h


--------------------------------------------------------------------------------
/src/depot_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/depot_type.h


--------------------------------------------------------------------------------
/src/direction_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/direction_func.h


--------------------------------------------------------------------------------
/src/direction_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/direction_type.h


--------------------------------------------------------------------------------
/src/disaster_vehicle.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/disaster_vehicle.cpp


--------------------------------------------------------------------------------
/src/disaster_vehicle.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/disaster_vehicle.h


--------------------------------------------------------------------------------
/src/dock_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dock_cmd.h


--------------------------------------------------------------------------------
/src/dock_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dock_gui.cpp


--------------------------------------------------------------------------------
/src/driver.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/driver.cpp


--------------------------------------------------------------------------------
/src/driver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/driver.h


--------------------------------------------------------------------------------
/src/dropdown.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dropdown.cpp


--------------------------------------------------------------------------------
/src/dropdown_common_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dropdown_common_type.h


--------------------------------------------------------------------------------
/src/dropdown_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dropdown_func.h


--------------------------------------------------------------------------------
/src/dropdown_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/dropdown_type.h


--------------------------------------------------------------------------------
/src/economy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/economy.cpp


--------------------------------------------------------------------------------
/src/economy_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/economy_base.h


--------------------------------------------------------------------------------
/src/economy_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/economy_cmd.h


--------------------------------------------------------------------------------
/src/economy_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/economy_func.h


--------------------------------------------------------------------------------
/src/economy_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/economy_type.h


--------------------------------------------------------------------------------
/src/effectvehicle.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/effectvehicle.cpp


--------------------------------------------------------------------------------
/src/effectvehicle_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/effectvehicle_base.h


--------------------------------------------------------------------------------
/src/effectvehicle_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/effectvehicle_func.h


--------------------------------------------------------------------------------
/src/elrail.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/elrail.cpp


--------------------------------------------------------------------------------
/src/elrail_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/elrail_func.h


--------------------------------------------------------------------------------
/src/engine.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine.cpp


--------------------------------------------------------------------------------
/src/engine_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine_base.h


--------------------------------------------------------------------------------
/src/engine_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine_cmd.h


--------------------------------------------------------------------------------
/src/engine_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine_func.h


--------------------------------------------------------------------------------
/src/engine_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine_gui.cpp


--------------------------------------------------------------------------------
/src/engine_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine_gui.h


--------------------------------------------------------------------------------
/src/engine_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/engine_type.h


--------------------------------------------------------------------------------
/src/error.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/error.cpp


--------------------------------------------------------------------------------
/src/error.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/error.h


--------------------------------------------------------------------------------
/src/error_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/error_func.h


--------------------------------------------------------------------------------
/src/error_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/error_gui.cpp


--------------------------------------------------------------------------------
/src/fileio.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fileio.cpp


--------------------------------------------------------------------------------
/src/fileio_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fileio_func.h


--------------------------------------------------------------------------------
/src/fileio_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fileio_type.h


--------------------------------------------------------------------------------
/src/fios.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fios.cpp


--------------------------------------------------------------------------------
/src/fios.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fios.h


--------------------------------------------------------------------------------
/src/fios_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fios_gui.cpp


--------------------------------------------------------------------------------
/src/fontcache.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fontcache.cpp


--------------------------------------------------------------------------------
/src/fontcache.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/fontcache.h


--------------------------------------------------------------------------------
/src/framerate_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/framerate_gui.cpp


--------------------------------------------------------------------------------
/src/framerate_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/framerate_type.h


--------------------------------------------------------------------------------
/src/game/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/CMakeLists.txt


--------------------------------------------------------------------------------
/src/game/game.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game.hpp


--------------------------------------------------------------------------------
/src/game/game_config.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_config.cpp


--------------------------------------------------------------------------------
/src/game/game_config.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_config.hpp


--------------------------------------------------------------------------------
/src/game/game_core.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_core.cpp


--------------------------------------------------------------------------------
/src/game/game_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_gui.cpp


--------------------------------------------------------------------------------
/src/game/game_gui.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_gui.hpp


--------------------------------------------------------------------------------
/src/game/game_info.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_info.cpp


--------------------------------------------------------------------------------
/src/game/game_info.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_info.hpp


--------------------------------------------------------------------------------
/src/game/game_instance.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_instance.cpp


--------------------------------------------------------------------------------
/src/game/game_instance.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_instance.hpp


--------------------------------------------------------------------------------
/src/game/game_scanner.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_scanner.cpp


--------------------------------------------------------------------------------
/src/game/game_scanner.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_scanner.hpp


--------------------------------------------------------------------------------
/src/game/game_text.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_text.cpp


--------------------------------------------------------------------------------
/src/game/game_text.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/game/game_text.hpp


--------------------------------------------------------------------------------
/src/gamelog.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gamelog.cpp


--------------------------------------------------------------------------------
/src/gamelog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gamelog.h


--------------------------------------------------------------------------------
/src/gamelog_internal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gamelog_internal.h


--------------------------------------------------------------------------------
/src/genworld.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/genworld.cpp


--------------------------------------------------------------------------------
/src/genworld.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/genworld.h


--------------------------------------------------------------------------------
/src/genworld_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/genworld_gui.cpp


--------------------------------------------------------------------------------
/src/gfx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx.cpp


--------------------------------------------------------------------------------
/src/gfx_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_func.h


--------------------------------------------------------------------------------
/src/gfx_layout.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_layout.cpp


--------------------------------------------------------------------------------
/src/gfx_layout.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_layout.h


--------------------------------------------------------------------------------
/src/gfx_layout_fallback.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_layout_fallback.h


--------------------------------------------------------------------------------
/src/gfx_layout_icu.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_layout_icu.cpp


--------------------------------------------------------------------------------
/src/gfx_layout_icu.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_layout_icu.h


--------------------------------------------------------------------------------
/src/gfx_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfx_type.h


--------------------------------------------------------------------------------
/src/gfxinit.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfxinit.cpp


--------------------------------------------------------------------------------
/src/gfxinit.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gfxinit.h


--------------------------------------------------------------------------------
/src/goal.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/goal.cpp


--------------------------------------------------------------------------------
/src/goal_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/goal_base.h


--------------------------------------------------------------------------------
/src/goal_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/goal_cmd.h


--------------------------------------------------------------------------------
/src/goal_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/goal_gui.cpp


--------------------------------------------------------------------------------
/src/goal_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/goal_type.h


--------------------------------------------------------------------------------
/src/graph_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/graph_gui.cpp


--------------------------------------------------------------------------------
/src/graph_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/graph_gui.h


--------------------------------------------------------------------------------
/src/ground_vehicle.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ground_vehicle.cpp


--------------------------------------------------------------------------------
/src/ground_vehicle.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ground_vehicle.hpp


--------------------------------------------------------------------------------
/src/group.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/group.h


--------------------------------------------------------------------------------
/src/group_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/group_cmd.cpp


--------------------------------------------------------------------------------
/src/group_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/group_cmd.h


--------------------------------------------------------------------------------
/src/group_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/group_gui.cpp


--------------------------------------------------------------------------------
/src/group_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/group_gui.h


--------------------------------------------------------------------------------
/src/group_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/group_type.h


--------------------------------------------------------------------------------
/src/gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/gui.h


--------------------------------------------------------------------------------
/src/heightmap.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/heightmap.cpp


--------------------------------------------------------------------------------
/src/heightmap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/heightmap.h


--------------------------------------------------------------------------------
/src/help_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/help_gui.cpp


--------------------------------------------------------------------------------
/src/help_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/help_gui.h


--------------------------------------------------------------------------------
/src/highscore.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/highscore.cpp


--------------------------------------------------------------------------------
/src/highscore.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/highscore.h


--------------------------------------------------------------------------------
/src/highscore_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/highscore_gui.cpp


--------------------------------------------------------------------------------
/src/hotkeys.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/hotkeys.cpp


--------------------------------------------------------------------------------
/src/hotkeys.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/hotkeys.h


--------------------------------------------------------------------------------
/src/house.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/house.h


--------------------------------------------------------------------------------
/src/house_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/house_type.h


--------------------------------------------------------------------------------
/src/industry.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industry.h


--------------------------------------------------------------------------------
/src/industry_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industry_cmd.cpp


--------------------------------------------------------------------------------
/src/industry_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industry_cmd.h


--------------------------------------------------------------------------------
/src/industry_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industry_gui.cpp


--------------------------------------------------------------------------------
/src/industry_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industry_map.h


--------------------------------------------------------------------------------
/src/industry_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industry_type.h


--------------------------------------------------------------------------------
/src/industrytype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/industrytype.h


--------------------------------------------------------------------------------
/src/ini.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ini.cpp


--------------------------------------------------------------------------------
/src/ini_load.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ini_load.cpp


--------------------------------------------------------------------------------
/src/ini_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ini_type.h


--------------------------------------------------------------------------------
/src/intro_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/intro_gui.cpp


--------------------------------------------------------------------------------
/src/landscape.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/landscape.cpp


--------------------------------------------------------------------------------
/src/landscape.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/landscape.h


--------------------------------------------------------------------------------
/src/landscape_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/landscape_cmd.h


--------------------------------------------------------------------------------
/src/landscape_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/landscape_type.h


--------------------------------------------------------------------------------
/src/lang/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/CMakeLists.txt


--------------------------------------------------------------------------------
/src/lang/afrikaans.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/afrikaans.txt


--------------------------------------------------------------------------------
/src/lang/arabic_egypt.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/arabic_egypt.txt


--------------------------------------------------------------------------------
/src/lang/basque.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/basque.txt


--------------------------------------------------------------------------------
/src/lang/belarusian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/belarusian.txt


--------------------------------------------------------------------------------
/src/lang/bulgarian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/bulgarian.txt


--------------------------------------------------------------------------------
/src/lang/catalan.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/catalan.txt


--------------------------------------------------------------------------------
/src/lang/chuvash.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/chuvash.txt


--------------------------------------------------------------------------------
/src/lang/croatian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/croatian.txt


--------------------------------------------------------------------------------
/src/lang/czech.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/czech.txt


--------------------------------------------------------------------------------
/src/lang/danish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/danish.txt


--------------------------------------------------------------------------------
/src/lang/dutch.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/dutch.txt


--------------------------------------------------------------------------------
/src/lang/english.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/english.txt


--------------------------------------------------------------------------------
/src/lang/english_AU.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/english_AU.txt


--------------------------------------------------------------------------------
/src/lang/english_US.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/english_US.txt


--------------------------------------------------------------------------------
/src/lang/esperanto.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/esperanto.txt


--------------------------------------------------------------------------------
/src/lang/estonian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/estonian.txt


--------------------------------------------------------------------------------
/src/lang/faroese.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/faroese.txt


--------------------------------------------------------------------------------
/src/lang/finnish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/finnish.txt


--------------------------------------------------------------------------------
/src/lang/french.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/french.txt


--------------------------------------------------------------------------------
/src/lang/frisian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/frisian.txt


--------------------------------------------------------------------------------
/src/lang/gaelic.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/gaelic.txt


--------------------------------------------------------------------------------
/src/lang/galician.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/galician.txt


--------------------------------------------------------------------------------
/src/lang/german.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/german.txt


--------------------------------------------------------------------------------
/src/lang/greek.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/greek.txt


--------------------------------------------------------------------------------
/src/lang/hebrew.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/hebrew.txt


--------------------------------------------------------------------------------
/src/lang/hindi.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/hindi.txt


--------------------------------------------------------------------------------
/src/lang/hungarian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/hungarian.txt


--------------------------------------------------------------------------------
/src/lang/icelandic.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/icelandic.txt


--------------------------------------------------------------------------------
/src/lang/ido.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/ido.txt


--------------------------------------------------------------------------------
/src/lang/indonesian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/indonesian.txt


--------------------------------------------------------------------------------
/src/lang/irish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/irish.txt


--------------------------------------------------------------------------------
/src/lang/italian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/italian.txt


--------------------------------------------------------------------------------
/src/lang/japanese.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/japanese.txt


--------------------------------------------------------------------------------
/src/lang/korean.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/korean.txt


--------------------------------------------------------------------------------
/src/lang/latin.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/latin.txt


--------------------------------------------------------------------------------
/src/lang/latvian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/latvian.txt


--------------------------------------------------------------------------------
/src/lang/lithuanian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/lithuanian.txt


--------------------------------------------------------------------------------
/src/lang/luxembourgish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/luxembourgish.txt


--------------------------------------------------------------------------------
/src/lang/macedonian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/macedonian.txt


--------------------------------------------------------------------------------
/src/lang/malay.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/malay.txt


--------------------------------------------------------------------------------
/src/lang/maltese.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/maltese.txt


--------------------------------------------------------------------------------
/src/lang/maori.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/maori.txt


--------------------------------------------------------------------------------
/src/lang/marathi.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/marathi.txt


--------------------------------------------------------------------------------
/src/lang/persian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/persian.txt


--------------------------------------------------------------------------------
/src/lang/polish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/polish.txt


--------------------------------------------------------------------------------
/src/lang/portuguese.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/portuguese.txt


--------------------------------------------------------------------------------
/src/lang/romanian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/romanian.txt


--------------------------------------------------------------------------------
/src/lang/russian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/russian.txt


--------------------------------------------------------------------------------
/src/lang/serbian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/serbian.txt


--------------------------------------------------------------------------------
/src/lang/slovak.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/slovak.txt


--------------------------------------------------------------------------------
/src/lang/slovenian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/slovenian.txt


--------------------------------------------------------------------------------
/src/lang/spanish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/spanish.txt


--------------------------------------------------------------------------------
/src/lang/spanish_MX.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/spanish_MX.txt


--------------------------------------------------------------------------------
/src/lang/swedish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/swedish.txt


--------------------------------------------------------------------------------
/src/lang/tamil.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/tamil.txt


--------------------------------------------------------------------------------
/src/lang/thai.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/thai.txt


--------------------------------------------------------------------------------
/src/lang/turkish.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/turkish.txt


--------------------------------------------------------------------------------
/src/lang/ukrainian.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/ukrainian.txt


--------------------------------------------------------------------------------
/src/lang/urdu.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/urdu.txt


--------------------------------------------------------------------------------
/src/lang/vietnamese.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/vietnamese.txt


--------------------------------------------------------------------------------
/src/lang/welsh.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/lang/welsh.txt


--------------------------------------------------------------------------------
/src/language.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/language.h


--------------------------------------------------------------------------------
/src/league_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/league_base.h


--------------------------------------------------------------------------------
/src/league_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/league_cmd.cpp


--------------------------------------------------------------------------------
/src/league_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/league_cmd.h


--------------------------------------------------------------------------------
/src/league_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/league_gui.cpp


--------------------------------------------------------------------------------
/src/league_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/league_gui.h


--------------------------------------------------------------------------------
/src/league_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/league_type.h


--------------------------------------------------------------------------------
/src/library_loader.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/library_loader.h


--------------------------------------------------------------------------------
/src/linkgraph/demands.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/demands.cpp


--------------------------------------------------------------------------------
/src/linkgraph/demands.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/demands.h


--------------------------------------------------------------------------------
/src/linkgraph/flowmapper.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/flowmapper.h


--------------------------------------------------------------------------------
/src/linkgraph/init.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/init.h


--------------------------------------------------------------------------------
/src/linkgraph/linkgraph.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/linkgraph.h


--------------------------------------------------------------------------------
/src/linkgraph/mcf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/mcf.cpp


--------------------------------------------------------------------------------
/src/linkgraph/mcf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/mcf.h


--------------------------------------------------------------------------------
/src/linkgraph/refresh.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/refresh.cpp


--------------------------------------------------------------------------------
/src/linkgraph/refresh.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/linkgraph/refresh.h


--------------------------------------------------------------------------------
/src/livery.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/livery.h


--------------------------------------------------------------------------------
/src/main_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/main_gui.cpp


--------------------------------------------------------------------------------
/src/map.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/map.cpp


--------------------------------------------------------------------------------
/src/map_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/map_func.h


--------------------------------------------------------------------------------
/src/map_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/map_type.h


--------------------------------------------------------------------------------
/src/misc.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc.cpp


--------------------------------------------------------------------------------
/src/misc/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/CMakeLists.txt


--------------------------------------------------------------------------------
/src/misc/autorelease.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/autorelease.hpp


--------------------------------------------------------------------------------
/src/misc/binaryheap.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/binaryheap.hpp


--------------------------------------------------------------------------------
/src/misc/dbg_helpers.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/dbg_helpers.cpp


--------------------------------------------------------------------------------
/src/misc/dbg_helpers.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/dbg_helpers.h


--------------------------------------------------------------------------------
/src/misc/endian_buffer.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/endian_buffer.hpp


--------------------------------------------------------------------------------
/src/misc/getoptdata.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/getoptdata.cpp


--------------------------------------------------------------------------------
/src/misc/getoptdata.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/getoptdata.h


--------------------------------------------------------------------------------
/src/misc/hashtable.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/hashtable.hpp


--------------------------------------------------------------------------------
/src/misc/history.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/history.cpp


--------------------------------------------------------------------------------
/src/misc/history_func.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/history_func.hpp


--------------------------------------------------------------------------------
/src/misc/history_type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/history_type.hpp


--------------------------------------------------------------------------------
/src/misc/lrucache.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc/lrucache.hpp


--------------------------------------------------------------------------------
/src/misc_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc_cmd.cpp


--------------------------------------------------------------------------------
/src/misc_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc_cmd.h


--------------------------------------------------------------------------------
/src/misc_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/misc_gui.cpp


--------------------------------------------------------------------------------
/src/mixer.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/mixer.cpp


--------------------------------------------------------------------------------
/src/mixer.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/mixer.h


--------------------------------------------------------------------------------
/src/music.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music.cpp


--------------------------------------------------------------------------------
/src/music/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/CMakeLists.txt


--------------------------------------------------------------------------------
/src/music/allegro_m.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/allegro_m.cpp


--------------------------------------------------------------------------------
/src/music/allegro_m.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/allegro_m.h


--------------------------------------------------------------------------------
/src/music/bemidi.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/bemidi.cpp


--------------------------------------------------------------------------------
/src/music/bemidi.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/bemidi.h


--------------------------------------------------------------------------------
/src/music/cocoa_m.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/cocoa_m.cpp


--------------------------------------------------------------------------------
/src/music/cocoa_m.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/cocoa_m.h


--------------------------------------------------------------------------------
/src/music/dmusic.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/dmusic.cpp


--------------------------------------------------------------------------------
/src/music/dmusic.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/dmusic.h


--------------------------------------------------------------------------------
/src/music/extmidi.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/extmidi.cpp


--------------------------------------------------------------------------------
/src/music/extmidi.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/extmidi.h


--------------------------------------------------------------------------------
/src/music/fluidsynth.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/fluidsynth.cpp


--------------------------------------------------------------------------------
/src/music/fluidsynth.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/fluidsynth.h


--------------------------------------------------------------------------------
/src/music/midi.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/midi.h


--------------------------------------------------------------------------------
/src/music/midifile.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/midifile.cpp


--------------------------------------------------------------------------------
/src/music/midifile.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/midifile.hpp


--------------------------------------------------------------------------------
/src/music/music_driver.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/music_driver.hpp


--------------------------------------------------------------------------------
/src/music/null_m.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/null_m.cpp


--------------------------------------------------------------------------------
/src/music/null_m.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/null_m.h


--------------------------------------------------------------------------------
/src/music/win32_m.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/win32_m.cpp


--------------------------------------------------------------------------------
/src/music/win32_m.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music/win32_m.h


--------------------------------------------------------------------------------
/src/music_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/music_gui.cpp


--------------------------------------------------------------------------------
/src/network/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/CMakeLists.txt


--------------------------------------------------------------------------------
/src/network/core/address.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/address.h


--------------------------------------------------------------------------------
/src/network/core/config.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/config.h


--------------------------------------------------------------------------------
/src/network/core/core.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/core.cpp


--------------------------------------------------------------------------------
/src/network/core/core.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/core.h


--------------------------------------------------------------------------------
/src/network/core/host.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/host.cpp


--------------------------------------------------------------------------------
/src/network/core/host.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/host.h


--------------------------------------------------------------------------------
/src/network/core/http.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/http.h


--------------------------------------------------------------------------------
/src/network/core/packet.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/packet.h


--------------------------------------------------------------------------------
/src/network/core/tcp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/tcp.cpp


--------------------------------------------------------------------------------
/src/network/core/tcp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/tcp.h


--------------------------------------------------------------------------------
/src/network/core/udp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/udp.cpp


--------------------------------------------------------------------------------
/src/network/core/udp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/core/udp.h


--------------------------------------------------------------------------------
/src/network/network.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/network.cpp


--------------------------------------------------------------------------------
/src/network/network.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/network.h


--------------------------------------------------------------------------------
/src/network/network_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/network_base.h


--------------------------------------------------------------------------------
/src/network/network_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/network_func.h


--------------------------------------------------------------------------------
/src/network/network_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/network/network_gui.h


--------------------------------------------------------------------------------
/src/newgrf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf.cpp


--------------------------------------------------------------------------------
/src/newgrf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf.h


--------------------------------------------------------------------------------
/src/newgrf_act5.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_act5.h


--------------------------------------------------------------------------------
/src/newgrf_airport.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_airport.cpp


--------------------------------------------------------------------------------
/src/newgrf_airport.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_airport.h


--------------------------------------------------------------------------------
/src/newgrf_badge.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_badge.cpp


--------------------------------------------------------------------------------
/src/newgrf_badge.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_badge.h


--------------------------------------------------------------------------------
/src/newgrf_badge_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_badge_gui.h


--------------------------------------------------------------------------------
/src/newgrf_badge_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_badge_type.h


--------------------------------------------------------------------------------
/src/newgrf_callbacks.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_callbacks.h


--------------------------------------------------------------------------------
/src/newgrf_canal.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_canal.cpp


--------------------------------------------------------------------------------
/src/newgrf_canal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_canal.h


--------------------------------------------------------------------------------
/src/newgrf_cargo.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_cargo.cpp


--------------------------------------------------------------------------------
/src/newgrf_cargo.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_cargo.h


--------------------------------------------------------------------------------
/src/newgrf_class.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_class.h


--------------------------------------------------------------------------------
/src/newgrf_class_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_class_func.h


--------------------------------------------------------------------------------
/src/newgrf_commons.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_commons.cpp


--------------------------------------------------------------------------------
/src/newgrf_commons.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_commons.h


--------------------------------------------------------------------------------
/src/newgrf_config.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_config.cpp


--------------------------------------------------------------------------------
/src/newgrf_config.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_config.h


--------------------------------------------------------------------------------
/src/newgrf_debug.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_debug.h


--------------------------------------------------------------------------------
/src/newgrf_engine.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_engine.cpp


--------------------------------------------------------------------------------
/src/newgrf_engine.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_engine.h


--------------------------------------------------------------------------------
/src/newgrf_generic.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_generic.cpp


--------------------------------------------------------------------------------
/src/newgrf_generic.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_generic.h


--------------------------------------------------------------------------------
/src/newgrf_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_gui.cpp


--------------------------------------------------------------------------------
/src/newgrf_house.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_house.cpp


--------------------------------------------------------------------------------
/src/newgrf_house.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_house.h


--------------------------------------------------------------------------------
/src/newgrf_industries.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_industries.h


--------------------------------------------------------------------------------
/src/newgrf_object.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_object.cpp


--------------------------------------------------------------------------------
/src/newgrf_object.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_object.h


--------------------------------------------------------------------------------
/src/newgrf_profiling.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_profiling.h


--------------------------------------------------------------------------------
/src/newgrf_properties.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_properties.h


--------------------------------------------------------------------------------
/src/newgrf_railtype.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_railtype.cpp


--------------------------------------------------------------------------------
/src/newgrf_railtype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_railtype.h


--------------------------------------------------------------------------------
/src/newgrf_roadstop.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_roadstop.cpp


--------------------------------------------------------------------------------
/src/newgrf_roadstop.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_roadstop.h


--------------------------------------------------------------------------------
/src/newgrf_roadtype.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_roadtype.cpp


--------------------------------------------------------------------------------
/src/newgrf_roadtype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_roadtype.h


--------------------------------------------------------------------------------
/src/newgrf_sound.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_sound.cpp


--------------------------------------------------------------------------------
/src/newgrf_sound.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_sound.h


--------------------------------------------------------------------------------
/src/newgrf_station.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_station.cpp


--------------------------------------------------------------------------------
/src/newgrf_station.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_station.h


--------------------------------------------------------------------------------
/src/newgrf_storage.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_storage.cpp


--------------------------------------------------------------------------------
/src/newgrf_storage.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_storage.h


--------------------------------------------------------------------------------
/src/newgrf_text.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_text.cpp


--------------------------------------------------------------------------------
/src/newgrf_text.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_text.h


--------------------------------------------------------------------------------
/src/newgrf_text_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_text_type.h


--------------------------------------------------------------------------------
/src/newgrf_town.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_town.cpp


--------------------------------------------------------------------------------
/src/newgrf_town.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_town.h


--------------------------------------------------------------------------------
/src/newgrf_townname.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_townname.cpp


--------------------------------------------------------------------------------
/src/newgrf_townname.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/newgrf_townname.h


--------------------------------------------------------------------------------
/src/news_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/news_cmd.h


--------------------------------------------------------------------------------
/src/news_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/news_func.h


--------------------------------------------------------------------------------
/src/news_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/news_gui.cpp


--------------------------------------------------------------------------------
/src/news_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/news_gui.h


--------------------------------------------------------------------------------
/src/news_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/news_type.h


--------------------------------------------------------------------------------
/src/object.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object.h


--------------------------------------------------------------------------------
/src/object_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object_base.h


--------------------------------------------------------------------------------
/src/object_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object_cmd.cpp


--------------------------------------------------------------------------------
/src/object_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object_cmd.h


--------------------------------------------------------------------------------
/src/object_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object_gui.cpp


--------------------------------------------------------------------------------
/src/object_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object_map.h


--------------------------------------------------------------------------------
/src/object_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/object_type.h


--------------------------------------------------------------------------------
/src/openttd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/openttd.cpp


--------------------------------------------------------------------------------
/src/openttd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/openttd.h


--------------------------------------------------------------------------------
/src/order_backup.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_backup.cpp


--------------------------------------------------------------------------------
/src/order_backup.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_backup.h


--------------------------------------------------------------------------------
/src/order_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_base.h


--------------------------------------------------------------------------------
/src/order_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_cmd.cpp


--------------------------------------------------------------------------------
/src/order_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_cmd.h


--------------------------------------------------------------------------------
/src/order_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_func.h


--------------------------------------------------------------------------------
/src/order_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_gui.cpp


--------------------------------------------------------------------------------
/src/order_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/order_type.h


--------------------------------------------------------------------------------
/src/os/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/os/CMakeLists.txt


--------------------------------------------------------------------------------
/src/os/macosx/macos.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/os/macosx/macos.h


--------------------------------------------------------------------------------
/src/os/macosx/macos.mm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/os/macosx/macos.mm


--------------------------------------------------------------------------------
/src/os/unix/font_unix.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/os/unix/font_unix.h


--------------------------------------------------------------------------------
/src/os/unix/unix.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/os/unix/unix.cpp


--------------------------------------------------------------------------------
/src/os/windows/win32.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/os/windows/win32.h


--------------------------------------------------------------------------------
/src/osk_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/osk_gui.cpp


--------------------------------------------------------------------------------
/src/palette.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/palette.cpp


--------------------------------------------------------------------------------
/src/palette_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/palette_func.h


--------------------------------------------------------------------------------
/src/pbs.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/pbs.cpp


--------------------------------------------------------------------------------
/src/pbs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/pbs.h


--------------------------------------------------------------------------------
/src/picker_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/picker_func.h


--------------------------------------------------------------------------------
/src/picker_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/picker_gui.cpp


--------------------------------------------------------------------------------
/src/picker_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/picker_gui.h


--------------------------------------------------------------------------------
/src/progress.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/progress.cpp


--------------------------------------------------------------------------------
/src/progress.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/progress.h


--------------------------------------------------------------------------------
/src/provider_manager.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/provider_manager.h


--------------------------------------------------------------------------------
/src/querystring_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/querystring_gui.h


--------------------------------------------------------------------------------
/src/rail.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail.cpp


--------------------------------------------------------------------------------
/src/rail.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail.h


--------------------------------------------------------------------------------
/src/rail_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail_cmd.cpp


--------------------------------------------------------------------------------
/src/rail_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail_cmd.h


--------------------------------------------------------------------------------
/src/rail_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail_gui.cpp


--------------------------------------------------------------------------------
/src/rail_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail_gui.h


--------------------------------------------------------------------------------
/src/rail_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail_map.h


--------------------------------------------------------------------------------
/src/rail_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rail_type.h


--------------------------------------------------------------------------------
/src/rev.cpp.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rev.cpp.in


--------------------------------------------------------------------------------
/src/rev.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/rev.h


--------------------------------------------------------------------------------
/src/road.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road.cpp


--------------------------------------------------------------------------------
/src/road.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road.h


--------------------------------------------------------------------------------
/src/road_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_cmd.cpp


--------------------------------------------------------------------------------
/src/road_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_cmd.h


--------------------------------------------------------------------------------
/src/road_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_func.h


--------------------------------------------------------------------------------
/src/road_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_gui.cpp


--------------------------------------------------------------------------------
/src/road_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_gui.h


--------------------------------------------------------------------------------
/src/road_internal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_internal.h


--------------------------------------------------------------------------------
/src/road_map.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_map.cpp


--------------------------------------------------------------------------------
/src/road_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_map.h


--------------------------------------------------------------------------------
/src/road_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/road_type.h


--------------------------------------------------------------------------------
/src/roadstop.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/roadstop.cpp


--------------------------------------------------------------------------------
/src/roadstop_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/roadstop_base.h


--------------------------------------------------------------------------------
/src/roadveh.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/roadveh.h


--------------------------------------------------------------------------------
/src/roadveh_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/roadveh_cmd.cpp


--------------------------------------------------------------------------------
/src/roadveh_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/roadveh_cmd.h


--------------------------------------------------------------------------------
/src/roadveh_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/roadveh_gui.cpp


--------------------------------------------------------------------------------
/src/safeguards.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/safeguards.h


--------------------------------------------------------------------------------
/src/saveload/ai_sl.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/saveload/ai_sl.cpp


--------------------------------------------------------------------------------
/src/saveload/map_sl.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/saveload/map_sl.cpp


--------------------------------------------------------------------------------
/src/saveload/saveload.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/saveload/saveload.h


--------------------------------------------------------------------------------
/src/screenshot.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot.cpp


--------------------------------------------------------------------------------
/src/screenshot.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot.h


--------------------------------------------------------------------------------
/src/screenshot_bmp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot_bmp.cpp


--------------------------------------------------------------------------------
/src/screenshot_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot_gui.cpp


--------------------------------------------------------------------------------
/src/screenshot_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot_gui.h


--------------------------------------------------------------------------------
/src/screenshot_pcx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot_pcx.cpp


--------------------------------------------------------------------------------
/src/screenshot_png.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot_png.cpp


--------------------------------------------------------------------------------
/src/screenshot_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/screenshot_type.h


--------------------------------------------------------------------------------
/src/script/script_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/script/script_cmd.h


--------------------------------------------------------------------------------
/src/script/script_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/script/script_gui.h


--------------------------------------------------------------------------------
/src/script/squirrel.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/script/squirrel.cpp


--------------------------------------------------------------------------------
/src/script/squirrel.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/script/squirrel.hpp


--------------------------------------------------------------------------------
/src/settingentry_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settingentry_gui.h


--------------------------------------------------------------------------------
/src/settings.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings.cpp


--------------------------------------------------------------------------------
/src/settings_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_cmd.h


--------------------------------------------------------------------------------
/src/settings_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_func.h


--------------------------------------------------------------------------------
/src/settings_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_gui.cpp


--------------------------------------------------------------------------------
/src/settings_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_gui.h


--------------------------------------------------------------------------------
/src/settings_internal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_internal.h


--------------------------------------------------------------------------------
/src/settings_table.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_table.cpp


--------------------------------------------------------------------------------
/src/settings_table.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_table.h


--------------------------------------------------------------------------------
/src/settings_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/settings_type.h


--------------------------------------------------------------------------------
/src/ship.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ship.h


--------------------------------------------------------------------------------
/src/ship_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ship_cmd.cpp


--------------------------------------------------------------------------------
/src/ship_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ship_cmd.h


--------------------------------------------------------------------------------
/src/ship_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/ship_gui.cpp


--------------------------------------------------------------------------------
/src/signal.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signal.cpp


--------------------------------------------------------------------------------
/src/signal_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signal_func.h


--------------------------------------------------------------------------------
/src/signal_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signal_type.h


--------------------------------------------------------------------------------
/src/signature.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signature.cpp


--------------------------------------------------------------------------------
/src/signature.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signature.h


--------------------------------------------------------------------------------
/src/signs.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs.cpp


--------------------------------------------------------------------------------
/src/signs_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs_base.h


--------------------------------------------------------------------------------
/src/signs_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs_cmd.cpp


--------------------------------------------------------------------------------
/src/signs_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs_cmd.h


--------------------------------------------------------------------------------
/src/signs_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs_func.h


--------------------------------------------------------------------------------
/src/signs_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs_gui.cpp


--------------------------------------------------------------------------------
/src/signs_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/signs_type.h


--------------------------------------------------------------------------------
/src/slider.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/slider.cpp


--------------------------------------------------------------------------------
/src/slider_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/slider_func.h


--------------------------------------------------------------------------------
/src/slope_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/slope_func.h


--------------------------------------------------------------------------------
/src/slope_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/slope_type.h


--------------------------------------------------------------------------------
/src/smallmap_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/smallmap_gui.cpp


--------------------------------------------------------------------------------
/src/smallmap_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/smallmap_gui.h


--------------------------------------------------------------------------------
/src/sortlist_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sortlist_type.h


--------------------------------------------------------------------------------
/src/sound.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound.cpp


--------------------------------------------------------------------------------
/src/sound/allegro_s.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/allegro_s.cpp


--------------------------------------------------------------------------------
/src/sound/allegro_s.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/allegro_s.h


--------------------------------------------------------------------------------
/src/sound/cocoa_s.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/cocoa_s.cpp


--------------------------------------------------------------------------------
/src/sound/cocoa_s.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/cocoa_s.h


--------------------------------------------------------------------------------
/src/sound/null_s.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/null_s.cpp


--------------------------------------------------------------------------------
/src/sound/null_s.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/null_s.h


--------------------------------------------------------------------------------
/src/sound/sdl2_s.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/sdl2_s.cpp


--------------------------------------------------------------------------------
/src/sound/sdl_s.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/sdl_s.h


--------------------------------------------------------------------------------
/src/sound/win32_s.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/win32_s.cpp


--------------------------------------------------------------------------------
/src/sound/win32_s.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/win32_s.h


--------------------------------------------------------------------------------
/src/sound/xaudio2_s.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/xaudio2_s.cpp


--------------------------------------------------------------------------------
/src/sound/xaudio2_s.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound/xaudio2_s.h


--------------------------------------------------------------------------------
/src/sound_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound_func.h


--------------------------------------------------------------------------------
/src/sound_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sound_type.h


--------------------------------------------------------------------------------
/src/soundloader.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/soundloader.cpp


--------------------------------------------------------------------------------
/src/soundloader_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/soundloader_func.h


--------------------------------------------------------------------------------
/src/soundloader_raw.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/soundloader_raw.cpp


--------------------------------------------------------------------------------
/src/soundloader_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/soundloader_type.h


--------------------------------------------------------------------------------
/src/soundloader_wav.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/soundloader_wav.cpp


--------------------------------------------------------------------------------
/src/source_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/source_type.h


--------------------------------------------------------------------------------
/src/sprite.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sprite.cpp


--------------------------------------------------------------------------------
/src/sprite.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/sprite.h


--------------------------------------------------------------------------------
/src/spritecache.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/spritecache.cpp


--------------------------------------------------------------------------------
/src/spritecache.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/spritecache.h


--------------------------------------------------------------------------------
/src/spritecache_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/spritecache_type.h


--------------------------------------------------------------------------------
/src/station.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station.cpp


--------------------------------------------------------------------------------
/src/station_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_base.h


--------------------------------------------------------------------------------
/src/station_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_cmd.cpp


--------------------------------------------------------------------------------
/src/station_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_cmd.h


--------------------------------------------------------------------------------
/src/station_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_func.h


--------------------------------------------------------------------------------
/src/station_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_gui.cpp


--------------------------------------------------------------------------------
/src/station_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_gui.h


--------------------------------------------------------------------------------
/src/station_kdtree.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_kdtree.h


--------------------------------------------------------------------------------
/src/station_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_map.h


--------------------------------------------------------------------------------
/src/station_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/station_type.h


--------------------------------------------------------------------------------
/src/statusbar_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/statusbar_gui.cpp


--------------------------------------------------------------------------------
/src/statusbar_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/statusbar_gui.h


--------------------------------------------------------------------------------
/src/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/stdafx.h


--------------------------------------------------------------------------------
/src/story.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/story.cpp


--------------------------------------------------------------------------------
/src/story_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/story_base.h


--------------------------------------------------------------------------------
/src/story_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/story_cmd.h


--------------------------------------------------------------------------------
/src/story_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/story_gui.cpp


--------------------------------------------------------------------------------
/src/story_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/story_type.h


--------------------------------------------------------------------------------
/src/strgen/strgen.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/strgen/strgen.cpp


--------------------------------------------------------------------------------
/src/strgen/strgen.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/strgen/strgen.h


--------------------------------------------------------------------------------
/src/string.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/string.cpp


--------------------------------------------------------------------------------
/src/string_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/string_base.h


--------------------------------------------------------------------------------
/src/string_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/string_func.h


--------------------------------------------------------------------------------
/src/string_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/string_type.h


--------------------------------------------------------------------------------
/src/stringfilter.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/stringfilter.cpp


--------------------------------------------------------------------------------
/src/stringfilter_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/stringfilter_type.h


--------------------------------------------------------------------------------
/src/strings.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/strings.cpp


--------------------------------------------------------------------------------
/src/strings_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/strings_func.h


--------------------------------------------------------------------------------
/src/strings_internal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/strings_internal.h


--------------------------------------------------------------------------------
/src/strings_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/strings_type.h


--------------------------------------------------------------------------------
/src/subsidy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/subsidy.cpp


--------------------------------------------------------------------------------
/src/subsidy_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/subsidy_base.h


--------------------------------------------------------------------------------
/src/subsidy_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/subsidy_cmd.h


--------------------------------------------------------------------------------
/src/subsidy_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/subsidy_func.h


--------------------------------------------------------------------------------
/src/subsidy_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/subsidy_gui.cpp


--------------------------------------------------------------------------------
/src/subsidy_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/subsidy_type.h


--------------------------------------------------------------------------------
/src/survey.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/survey.cpp


--------------------------------------------------------------------------------
/src/survey.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/survey.h


--------------------------------------------------------------------------------
/src/table/animcursors.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/animcursors.h


--------------------------------------------------------------------------------
/src/table/autorail.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/autorail.h


--------------------------------------------------------------------------------
/src/table/bridge_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/bridge_land.h


--------------------------------------------------------------------------------
/src/table/cargo_const.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/cargo_const.h


--------------------------------------------------------------------------------
/src/table/clear_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/clear_land.h


--------------------------------------------------------------------------------
/src/table/elrail_data.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/elrail_data.h


--------------------------------------------------------------------------------
/src/table/engines.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/engines.h


--------------------------------------------------------------------------------
/src/table/genland.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/genland.h


--------------------------------------------------------------------------------
/src/table/object_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/object_land.h


--------------------------------------------------------------------------------
/src/table/palettes.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/palettes.h


--------------------------------------------------------------------------------
/src/table/pricebase.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/pricebase.h


--------------------------------------------------------------------------------
/src/table/railtypes.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/railtypes.h


--------------------------------------------------------------------------------
/src/table/road_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/road_land.h


--------------------------------------------------------------------------------
/src/table/roadtypes.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/roadtypes.h


--------------------------------------------------------------------------------
/src/table/settings.h.postamble:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/src/table/signal_data.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/signal_data.h


--------------------------------------------------------------------------------
/src/table/sprites.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/sprites.h


--------------------------------------------------------------------------------
/src/table/town_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/town_land.h


--------------------------------------------------------------------------------
/src/table/townname.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/townname.h


--------------------------------------------------------------------------------
/src/table/track_data.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/track_data.h


--------------------------------------------------------------------------------
/src/table/track_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/track_land.h


--------------------------------------------------------------------------------
/src/table/tree_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/tree_land.h


--------------------------------------------------------------------------------
/src/table/unicode.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/unicode.h


--------------------------------------------------------------------------------
/src/table/water_land.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/table/water_land.h


--------------------------------------------------------------------------------
/src/tar_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tar_type.h


--------------------------------------------------------------------------------
/src/terraform_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/terraform_cmd.cpp


--------------------------------------------------------------------------------
/src/terraform_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/terraform_cmd.h


--------------------------------------------------------------------------------
/src/terraform_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/terraform_gui.cpp


--------------------------------------------------------------------------------
/src/terraform_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/terraform_gui.h


--------------------------------------------------------------------------------
/src/tests/math_func.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tests/math_func.cpp


--------------------------------------------------------------------------------
/src/tests/test_main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tests/test_main.cpp


--------------------------------------------------------------------------------
/src/tests/tilearea.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tests/tilearea.cpp


--------------------------------------------------------------------------------
/src/tests/utf8.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tests/utf8.cpp


--------------------------------------------------------------------------------
/src/textbuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/textbuf.cpp


--------------------------------------------------------------------------------
/src/textbuf_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/textbuf_gui.h


--------------------------------------------------------------------------------
/src/textbuf_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/textbuf_type.h


--------------------------------------------------------------------------------
/src/texteff.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/texteff.cpp


--------------------------------------------------------------------------------
/src/texteff.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/texteff.hpp


--------------------------------------------------------------------------------
/src/textfile_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/textfile_gui.cpp


--------------------------------------------------------------------------------
/src/textfile_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/textfile_gui.h


--------------------------------------------------------------------------------
/src/textfile_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/textfile_type.h


--------------------------------------------------------------------------------
/src/tgp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tgp.cpp


--------------------------------------------------------------------------------
/src/tgp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tgp.h


--------------------------------------------------------------------------------
/src/thread.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/thread.h


--------------------------------------------------------------------------------
/src/tile_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tile_cmd.h


--------------------------------------------------------------------------------
/src/tile_map.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tile_map.cpp


--------------------------------------------------------------------------------
/src/tile_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tile_map.h


--------------------------------------------------------------------------------
/src/tile_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tile_type.h


--------------------------------------------------------------------------------
/src/tilearea.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tilearea.cpp


--------------------------------------------------------------------------------
/src/tilearea_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tilearea_type.h


--------------------------------------------------------------------------------
/src/timer/timer.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/timer/timer.h


--------------------------------------------------------------------------------
/src/timetable.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/timetable.h


--------------------------------------------------------------------------------
/src/timetable_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/timetable_cmd.cpp


--------------------------------------------------------------------------------
/src/timetable_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/timetable_cmd.h


--------------------------------------------------------------------------------
/src/timetable_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/timetable_gui.cpp


--------------------------------------------------------------------------------
/src/toolbar_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/toolbar_gui.cpp


--------------------------------------------------------------------------------
/src/toolbar_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/toolbar_gui.h


--------------------------------------------------------------------------------
/src/town.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town.h


--------------------------------------------------------------------------------
/src/town_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town_cmd.cpp


--------------------------------------------------------------------------------
/src/town_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town_cmd.h


--------------------------------------------------------------------------------
/src/town_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town_gui.cpp


--------------------------------------------------------------------------------
/src/town_kdtree.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town_kdtree.h


--------------------------------------------------------------------------------
/src/town_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town_map.h


--------------------------------------------------------------------------------
/src/town_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/town_type.h


--------------------------------------------------------------------------------
/src/townname.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/townname.cpp


--------------------------------------------------------------------------------
/src/townname_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/townname_func.h


--------------------------------------------------------------------------------
/src/townname_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/townname_type.h


--------------------------------------------------------------------------------
/src/track_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/track_func.h


--------------------------------------------------------------------------------
/src/track_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/track_type.h


--------------------------------------------------------------------------------
/src/train.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/train.h


--------------------------------------------------------------------------------
/src/train_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/train_cmd.cpp


--------------------------------------------------------------------------------
/src/train_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/train_cmd.h


--------------------------------------------------------------------------------
/src/train_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/train_gui.cpp


--------------------------------------------------------------------------------
/src/transparency.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/transparency.h


--------------------------------------------------------------------------------
/src/transparency_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/transparency_gui.h


--------------------------------------------------------------------------------
/src/transport_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/transport_type.h


--------------------------------------------------------------------------------
/src/tree_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tree_cmd.cpp


--------------------------------------------------------------------------------
/src/tree_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tree_cmd.h


--------------------------------------------------------------------------------
/src/tree_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tree_gui.cpp


--------------------------------------------------------------------------------
/src/tree_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tree_map.h


--------------------------------------------------------------------------------
/src/tunnel_map.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tunnel_map.cpp


--------------------------------------------------------------------------------
/src/tunnel_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tunnel_map.h


--------------------------------------------------------------------------------
/src/tunnelbridge.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tunnelbridge.h


--------------------------------------------------------------------------------
/src/tunnelbridge_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tunnelbridge_cmd.h


--------------------------------------------------------------------------------
/src/tunnelbridge_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/tunnelbridge_map.h


--------------------------------------------------------------------------------
/src/vehicle.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle.cpp


--------------------------------------------------------------------------------
/src/vehicle_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_base.h


--------------------------------------------------------------------------------
/src/vehicle_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_cmd.cpp


--------------------------------------------------------------------------------
/src/vehicle_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_cmd.h


--------------------------------------------------------------------------------
/src/vehicle_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_func.h


--------------------------------------------------------------------------------
/src/vehicle_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_gui.cpp


--------------------------------------------------------------------------------
/src/vehicle_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_gui.h


--------------------------------------------------------------------------------
/src/vehicle_gui_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_gui_base.h


--------------------------------------------------------------------------------
/src/vehicle_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehicle_type.h


--------------------------------------------------------------------------------
/src/vehiclelist.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehiclelist.cpp


--------------------------------------------------------------------------------
/src/vehiclelist.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehiclelist.h


--------------------------------------------------------------------------------
/src/vehiclelist_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehiclelist_cmd.h


--------------------------------------------------------------------------------
/src/vehiclelist_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/vehiclelist_func.h


--------------------------------------------------------------------------------
/src/video/allegro_v.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/allegro_v.cpp


--------------------------------------------------------------------------------
/src/video/allegro_v.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/allegro_v.h


--------------------------------------------------------------------------------
/src/video/dedicated_v.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/dedicated_v.h


--------------------------------------------------------------------------------
/src/video/null_v.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/null_v.cpp


--------------------------------------------------------------------------------
/src/video/null_v.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/null_v.h


--------------------------------------------------------------------------------
/src/video/opengl.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/opengl.cpp


--------------------------------------------------------------------------------
/src/video/opengl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/opengl.h


--------------------------------------------------------------------------------
/src/video/sdl2_v.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/sdl2_v.cpp


--------------------------------------------------------------------------------
/src/video/sdl2_v.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/sdl2_v.h


--------------------------------------------------------------------------------
/src/video/win32_v.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/win32_v.cpp


--------------------------------------------------------------------------------
/src/video/win32_v.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/video/win32_v.h


--------------------------------------------------------------------------------
/src/viewport.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/viewport.cpp


--------------------------------------------------------------------------------
/src/viewport_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/viewport_cmd.h


--------------------------------------------------------------------------------
/src/viewport_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/viewport_func.h


--------------------------------------------------------------------------------
/src/viewport_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/viewport_gui.cpp


--------------------------------------------------------------------------------
/src/viewport_kdtree.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/viewport_kdtree.h


--------------------------------------------------------------------------------
/src/viewport_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/viewport_type.h


--------------------------------------------------------------------------------
/src/void_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/void_cmd.cpp


--------------------------------------------------------------------------------
/src/void_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/void_map.h


--------------------------------------------------------------------------------
/src/water.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/water.h


--------------------------------------------------------------------------------
/src/water_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/water_cmd.cpp


--------------------------------------------------------------------------------
/src/water_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/water_cmd.h


--------------------------------------------------------------------------------
/src/water_map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/water_map.h


--------------------------------------------------------------------------------
/src/waypoint.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/waypoint.cpp


--------------------------------------------------------------------------------
/src/waypoint_base.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/waypoint_base.h


--------------------------------------------------------------------------------
/src/waypoint_cmd.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/waypoint_cmd.cpp


--------------------------------------------------------------------------------
/src/waypoint_cmd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/waypoint_cmd.h


--------------------------------------------------------------------------------
/src/waypoint_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/waypoint_func.h


--------------------------------------------------------------------------------
/src/waypoint_gui.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/waypoint_gui.cpp


--------------------------------------------------------------------------------
/src/widget.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/widget.cpp


--------------------------------------------------------------------------------
/src/widget_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/widget_type.h


--------------------------------------------------------------------------------
/src/widgets/ai_widget.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/widgets/ai_widget.h


--------------------------------------------------------------------------------
/src/window.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/window.cpp


--------------------------------------------------------------------------------
/src/window_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/window_func.h


--------------------------------------------------------------------------------
/src/window_gui.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/window_gui.h


--------------------------------------------------------------------------------
/src/window_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/window_type.h


--------------------------------------------------------------------------------
/src/zoom_func.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/zoom_func.h


--------------------------------------------------------------------------------
/src/zoom_type.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/src/zoom_type.h


--------------------------------------------------------------------------------
/vcpkg.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTTD/OpenTTD/HEAD/vcpkg.json


--------------------------------------------------------------------------------