├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── docs.yml │ ├── macos-latest.yml │ ├── packages.yml │ └── ubuntu.yml ├── .readthedocs.yaml ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── Doxyfile ├── LICENSE.APACHE ├── LICENSE.BSD ├── LICENSE.GPL ├── NEWS.md ├── README.md ├── appveyor.yml ├── dist ├── archive.qbs ├── distribute.qbs ├── dsa_pub.pem ├── linux │ ├── AppRun │ ├── push-to-itch.sh │ └── qt.conf ├── macos │ ├── fixup-install-names.rb │ └── push-to-itch.sh ├── make-dist.sh ├── update-translations.sh └── win │ ├── Custom_InstallDir.wxs │ ├── Custom_InstallDirDlg.wxs │ ├── banner.bmp │ ├── dialog.bmp │ ├── gpl-2.0.rtf │ ├── headerimage.bmp │ ├── installer.qbs │ ├── installer.wxs │ ├── push-to-itch.bat │ └── qt.conf ├── docs ├── Makefile ├── README.md ├── _build │ └── gettext │ │ ├── index.pot │ │ ├── manual.pot │ │ ├── reference.pot │ │ └── sphinx.pot ├── _static │ └── css │ │ ├── custom.css │ │ └── images │ │ └── automap-tiles.svg ├── conf.py ├── docs.qbs ├── index.rst ├── locale │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── index.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ ├── reference.po │ │ │ └── sphinx.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ └── manual.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ ├── reference.po │ │ │ └── sphinx.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ ├── reference.po │ │ │ └── sphinx.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── id │ │ └── LC_MESSAGES │ │ │ └── index.po │ ├── mr │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── nb_NO │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ ├── reference.po │ │ │ └── sphinx.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ └── locale.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ └── index.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── index.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ └── reference.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── index.po │ ├── zh_Hans │ │ └── LC_MESSAGES │ │ │ ├── index.po │ │ │ ├── manual.po │ │ │ ├── reference.po │ │ │ └── sphinx.po │ └── zh_Hant │ │ └── LC_MESSAGES │ │ ├── index.po │ │ ├── manual.po │ │ └── reference.po ├── make.bat ├── manual │ ├── automapping.md │ ├── custom-properties.rst │ ├── editing-tile-layers.rst │ ├── editing-tilesets.rst │ ├── export-custom.rst │ ├── export-defold.rst │ ├── export-generic.rst │ ├── export-gmx.rst │ ├── export-image.rst │ ├── export-other.rst │ ├── export-tbin.rst │ ├── export-tscn.rst │ ├── export-yy.rst │ ├── export.rst │ ├── images │ │ ├── automapping │ │ │ ├── automap_example1.png │ │ │ ├── automap_example10.png │ │ │ ├── automap_example11.png │ │ │ ├── automap_example12.png │ │ │ ├── automap_example13.png │ │ │ ├── automap_example14.gif │ │ │ ├── automap_example15.gif │ │ │ ├── automap_example16.png │ │ │ ├── automap_example17.png │ │ │ ├── automap_example18.png │ │ │ ├── automap_example19.png │ │ │ ├── automap_example2.png │ │ │ ├── automap_example20.png │ │ │ ├── automap_example21.png │ │ │ ├── automap_example22.png │ │ │ ├── automap_example23.png │ │ │ ├── automap_example24.png │ │ │ ├── automap_example25.png │ │ │ ├── automap_example26.png │ │ │ ├── automap_example3.png │ │ │ ├── automap_example4.png │ │ │ ├── automap_example5.png │ │ │ ├── automap_example6.png │ │ │ ├── automap_example7.png │ │ │ ├── automap_example8.png │ │ │ ├── automap_example9.png │ │ │ ├── automap_input1.png │ │ │ ├── automap_input2.png │ │ │ ├── automap_input3.png │ │ │ ├── automap_input4.png │ │ │ ├── automap_input5.png │ │ │ ├── automap_input6.png │ │ │ ├── automap_input7.png │ │ │ ├── automap_input8.png │ │ │ ├── automap_output1.png │ │ │ ├── automap_output2.png │ │ │ ├── automap_output_overlap1.png │ │ │ ├── automap_output_overlap2.png │ │ │ └── automap_output_overlap3.png │ │ ├── export │ │ │ └── stardew-valley-map.png │ │ ├── gamemaker-view-settings.png │ │ ├── infinite │ │ │ ├── infinite-demo.gif │ │ │ ├── infinite-map-conversion.png │ │ │ ├── infinite-map-converted.png │ │ │ ├── infinite-map-initial.png │ │ │ ├── infinite-map-overview.png │ │ │ └── infinite-new.png │ │ ├── introduction │ │ │ ├── tiled-new-map-tileset-added.png │ │ │ ├── tiled-new-map.png │ │ │ ├── tiled-new-tileset-created.png │ │ │ ├── tiled-new-tileset.png │ │ │ └── tiled-window.png │ │ ├── layers │ │ │ └── lock-visibility-toggle.png │ │ ├── object-connection.png │ │ ├── open-file-in-project.png │ │ ├── preferences-general.png │ │ ├── properties │ │ │ ├── add-property.png │ │ │ ├── properties-dock.png │ │ │ └── property-types-editor.png │ │ ├── python-windows.png │ │ ├── templates │ │ │ ├── creating-instances.gif │ │ │ ├── creating-templates.gif │ │ │ ├── editing-templates.gif │ │ │ └── templates-overview.png │ │ ├── terrain │ │ │ ├── add-terrain-set.png │ │ │ ├── blob-with-rotation.png │ │ │ ├── corner-set.png │ │ │ ├── decoration-low-probability-painting.png │ │ │ ├── decoration-low-probability.png │ │ │ ├── done-marking-tiles.png │ │ │ ├── drawing-cobblestone.png │ │ │ ├── drawing-dirt.png │ │ │ ├── edge-set.png │ │ │ ├── edit-tileset-button.png │ │ │ ├── low-and-high-probability.png │ │ │ ├── patterns-view.png │ │ │ ├── sand-marked.png │ │ │ ├── terrain-fill-mode-bucket-fill.png │ │ │ ├── terrain-fill-mode-stamp-brush.png │ │ │ ├── terrains-added.png │ │ │ └── transition-to-empty.png │ │ ├── tile-animation-editor.png │ │ ├── tile-collision-editor.png │ │ ├── tint-color.png │ │ ├── view-tile-collisions.png │ │ ├── world-alchemic-cutie.png │ │ └── world-view.png │ ├── introduction.rst │ ├── keyboard-shortcuts.rst │ ├── layers.rst │ ├── objects.rst │ ├── preferences.rst │ ├── projects.rst │ ├── python.rst │ ├── scripting.rst │ ├── terrain.rst │ ├── using-commands.rst │ ├── using-infinite-maps.rst │ ├── using-templates.rst │ └── worlds.rst ├── map.dtd ├── map.xsd ├── reference │ ├── CC-BY-SA.png │ ├── global-tile-ids.rst │ ├── json-map-format.rst │ ├── support-for-tmx-maps.rst │ ├── tmx-changelog.rst │ └── tmx-map-format.rst ├── requirements.txt └── scripting-doc │ ├── CHANGELOG.md │ ├── README.md │ ├── generate-scripting-tsdoc.sh │ ├── index.d.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── examples ├── buch-outdoor.png ├── desert.tmx ├── desert.tsx ├── examples.tiled-project ├── forest │ ├── forest.tmx │ ├── forest.tsx │ ├── squirrel.license │ └── squirrel.png ├── hexagonal-mini.tmx ├── hexmini.png ├── isometric_grass_and_water.png ├── isometric_grass_and_water.tmx ├── isometric_staggered_grass_and_water.tmx ├── objecttypes.xml ├── orthogonal-outside.tmx ├── perspective_walls.png ├── perspective_walls.tmx ├── perspective_walls.tsx ├── rpg │ ├── beach_tileset.png │ ├── beach_tileset.tsx │ ├── island.tmx │ └── readme.txt ├── sewer_automap │ ├── rule_001.tmx │ ├── rule_002.tmx │ ├── rule_003.tmx │ ├── rule_004.tmx │ ├── rule_005.tmx │ ├── rule_006.tmx │ ├── rule_007.tmx │ ├── rule_008.tmx │ ├── rule_009.tmx │ ├── rules.txt │ ├── rules_sewers.png │ └── sewers.tmx ├── sewer_tileset.png ├── sewers.tmx ├── sticker-knight │ ├── README.md │ ├── map │ │ ├── alter.png │ │ ├── backgroundArch.png │ │ ├── backgroundMountain.png │ │ ├── backgroundTower.png │ │ ├── backgroundTree.png │ │ ├── blobBlue.png │ │ ├── blobGreen.png │ │ ├── blue.png │ │ ├── bombStroked.png │ │ ├── castleWall.png │ │ ├── cloud.png │ │ ├── column1.png │ │ ├── column2.png │ │ ├── doorBlueStroked.png │ │ ├── doorGreenStroke.png │ │ ├── doorRedStroked.png │ │ ├── doorStroked.png │ │ ├── earthWall.png │ │ ├── earthWall2.png │ │ ├── exit.png │ │ ├── flare.png │ │ ├── gemBlueStroked.png │ │ ├── gemRedStroked.png │ │ ├── grassLarge.png │ │ ├── grassSmall.png │ │ ├── grey.png │ │ ├── hero.png │ │ ├── keyGreenStroked.png │ │ ├── keyRedStroked.png │ │ ├── keyYellowStroked.png │ │ ├── objs.tsx │ │ ├── platform1.png │ │ ├── platform2.png │ │ ├── platform3.png │ │ ├── platform4.png │ │ ├── platformBase1.png │ │ ├── platformBase2.png │ │ ├── platformBase3.png │ │ ├── platformBase4.png │ │ ├── platformBlock1.png │ │ ├── platformBlock2.png │ │ ├── platformBlock3.png │ │ ├── platformBlock4.png │ │ ├── platformConnector1.png │ │ ├── platformConnector2.png │ │ ├── platformConnector3.png │ │ ├── platformConnector4.png │ │ ├── pushBlock1.png │ │ ├── pushBlock2.png │ │ ├── pushBlock3.png │ │ ├── sandbox.tmx │ │ ├── sandbox2.tmx │ │ ├── shadow.png │ │ ├── shieldStroked.png │ │ ├── sign.png │ │ ├── skeleton.png │ │ ├── swordStroked.png │ │ ├── templates │ │ │ ├── block.tx │ │ │ ├── diamond.tx │ │ │ └── hero.tx │ │ ├── torch.png │ │ ├── trap.png │ │ ├── wallDecor1.png │ │ ├── wallDecor2.png │ │ ├── wallDecor3.png │ │ ├── window1.png │ │ ├── window2.png │ │ └── window3.png │ ├── preview.png │ ├── sprites.png │ ├── sticker-knight.world │ └── ui │ │ ├── backgroundSet.png │ │ ├── block.png │ │ ├── buttonHelp.png │ │ ├── buttonStart.png │ │ ├── cloud.png │ │ ├── gem.png │ │ ├── heart.png │ │ ├── helpBackground.png │ │ ├── shield.png │ │ ├── title.json │ │ └── title.png ├── test_hexagonal_tile_60x60x30.png ├── test_hexagonal_tile_60x60x30.tmx └── tmw_desert_spacing.png ├── flake.lock ├── flake.nix ├── man ├── tiled.1 ├── tiled.1.ronn ├── tmxrasterizer.1 ├── tmxrasterizer.1.ronn ├── tmxviewer.1 └── tmxviewer.1.ronn ├── mime ├── org.mapeditor.Tiled.xml └── tiled.thumbnailer ├── org.mapeditor.Tiled.appdata.xml ├── org.mapeditor.Tiled.desktop ├── qbs └── imports │ ├── PythonProbe.qbs │ ├── TiledPlugin.qbs │ ├── TiledQtGuiApplication.qbs │ └── TiledTest.qbs ├── snap ├── gui │ ├── tiled.desktop │ └── tiled.png └── snapcraft.yaml ├── src ├── karchive │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── KF5ArchiveConfig.cmake.in │ ├── LICENSES │ │ ├── BSD-2-Clause.txt │ │ ├── LGPL-2.0-only.txt │ │ ├── LGPL-2.0-or-later.txt │ │ ├── LGPL-3.0-only.txt │ │ └── LicenseRef-KDE-Accepted-LGPL.txt │ ├── README.md │ ├── karchive.qbs │ ├── metainfo.yaml │ └── src │ │ ├── CMakeLists.txt │ │ ├── config-compression.h │ │ ├── config-compression.h.cmake │ │ ├── k7zip.cpp │ │ ├── k7zip.h │ │ ├── kar.cpp │ │ ├── kar.h │ │ ├── karchive.cpp │ │ ├── karchive.h │ │ ├── karchive_export.h │ │ ├── karchive_p.h │ │ ├── karchivedirectory.h │ │ ├── karchiveentry.h │ │ ├── karchivefile.h │ │ ├── kbzip2filter.cpp │ │ ├── kbzip2filter.h │ │ ├── kcompressiondevice.cpp │ │ ├── kcompressiondevice.h │ │ ├── kcompressiondevice_p.h │ │ ├── kfilterbase.cpp │ │ ├── kfilterbase.h │ │ ├── kfilterdev.cpp │ │ ├── kfilterdev.h │ │ ├── kgzipfilter.cpp │ │ ├── kgzipfilter.h │ │ ├── klimitediodevice.cpp │ │ ├── klimitediodevice_p.h │ │ ├── knonefilter.cpp │ │ ├── knonefilter.h │ │ ├── krcc.cpp │ │ ├── krcc.h │ │ ├── ktar.cpp │ │ ├── ktar.h │ │ ├── kxzfilter.cpp │ │ ├── kxzfilter.h │ │ ├── kzip.cpp │ │ ├── kzip.h │ │ ├── kzipfileentry.h │ │ ├── loggingcategory.cpp │ │ └── loggingcategory.h ├── libtiled │ ├── compression.cpp │ ├── compression.h │ ├── containerhelpers.h │ ├── fileformat.cpp │ ├── fileformat.h │ ├── filesystemwatcher.cpp │ ├── filesystemwatcher.h │ ├── gidmapper.cpp │ ├── gidmapper.h │ ├── grid.h │ ├── grouplayer.cpp │ ├── grouplayer.h │ ├── hex.cpp │ ├── hex.h │ ├── hexagonalrenderer.cpp │ ├── hexagonalrenderer.h │ ├── imagecache.cpp │ ├── imagecache.h │ ├── imagelayer.cpp │ ├── imagelayer.h │ ├── imagereference.cpp │ ├── imagereference.h │ ├── isometricrenderer.cpp │ ├── isometricrenderer.h │ ├── layer.cpp │ ├── layer.h │ ├── libtiled.qbs │ ├── logginginterface.cpp │ ├── logginginterface.h │ ├── map.cpp │ ├── map.h │ ├── mapformat.cpp │ ├── mapformat.h │ ├── mapobject.cpp │ ├── mapobject.h │ ├── mapreader.cpp │ ├── mapreader.h │ ├── maprenderer.cpp │ ├── maprenderer.h │ ├── maptovariantconverter.cpp │ ├── maptovariantconverter.h │ ├── mapwriter.cpp │ ├── mapwriter.h │ ├── minimaprenderer.cpp │ ├── minimaprenderer.h │ ├── object.cpp │ ├── object.h │ ├── objectgroup.cpp │ ├── objectgroup.h │ ├── objecttemplate.cpp │ ├── objecttemplate.h │ ├── objecttemplateformat.cpp │ ├── objecttemplateformat.h │ ├── objecttypes.cpp │ ├── objecttypes.h │ ├── orthogonalrenderer.cpp │ ├── orthogonalrenderer.h │ ├── plugin.cpp │ ├── plugin.h │ ├── pluginmanager.cpp │ ├── pluginmanager.h │ ├── properties.cpp │ ├── properties.h │ ├── propertytype.cpp │ ├── propertytype.h │ ├── savefile.cpp │ ├── savefile.h │ ├── staggeredrenderer.cpp │ ├── staggeredrenderer.h │ ├── templatemanager.cpp │ ├── templatemanager.h │ ├── tile.cpp │ ├── tile.h │ ├── tileanimationdriver.cpp │ ├── tileanimationdriver.h │ ├── tiled.cpp │ ├── tiled.h │ ├── tiled_global.h │ ├── tilelayer.cpp │ ├── tilelayer.h │ ├── tileset.cpp │ ├── tileset.h │ ├── tilesetformat.cpp │ ├── tilesetformat.h │ ├── tilesetmanager.cpp │ ├── tilesetmanager.h │ ├── tmxmapformat.cpp │ ├── tmxmapformat.h │ ├── varianttomapconverter.cpp │ ├── varianttomapconverter.h │ ├── wangset.cpp │ ├── wangset.h │ ├── world.cpp │ └── world.h ├── libtiledquick │ ├── libtiledquick.qbs │ ├── mapitem.cpp │ ├── mapitem.h │ ├── maploader.cpp │ ├── maploader.h │ ├── mapref.h │ ├── tiledquick_global.h │ ├── tilelayeritem.cpp │ ├── tilelayeritem.h │ ├── tilesnode.cpp │ └── tilesnode.h ├── plugins │ ├── csv │ │ ├── csv.qbs │ │ ├── csv_global.h │ │ ├── csvplugin.cpp │ │ ├── csvplugin.h │ │ └── plugin.json │ ├── defold │ │ ├── defold.qbs │ │ ├── defoldplugin.cpp │ │ ├── defoldplugin.h │ │ ├── defoldplugin_global.h │ │ └── plugin.json │ ├── defoldcollection │ │ ├── defoldcollection.qbs │ │ ├── defoldcollectionplugin.cpp │ │ ├── defoldcollectionplugin.h │ │ ├── defoldcollectionplugin_global.h │ │ └── plugin.json │ ├── droidcraft │ │ ├── droidcraft.qbs │ │ ├── droidcraft.qrc │ │ ├── droidcraft_global.h │ │ ├── droidcraftplugin.cpp │ │ ├── droidcraftplugin.h │ │ ├── plugin.json │ │ └── tileset.png │ ├── flare │ │ ├── flare.qbs │ │ ├── flare_global.h │ │ ├── flareplugin.cpp │ │ ├── flareplugin.h │ │ └── plugin.json │ ├── gmx │ │ ├── gmx.qbs │ │ ├── gmx_global.h │ │ ├── gmxplugin.cpp │ │ ├── gmxplugin.h │ │ └── plugin.json │ ├── json │ │ ├── json.qbs │ │ ├── json_global.h │ │ ├── jsonplugin.cpp │ │ ├── jsonplugin.h │ │ ├── plugin.json │ │ └── qjsonparser │ │ │ ├── json.cpp │ │ │ └── json.h │ ├── json1 │ │ ├── json1.qbs │ │ ├── json_global.h │ │ ├── jsonplugin.cpp │ │ ├── jsonplugin.h │ │ ├── plugin.json │ │ └── qjsonparser │ │ │ ├── json.cpp │ │ │ └── json.h │ ├── lua │ │ ├── lua.qbs │ │ ├── lua_global.h │ │ ├── luaplugin.cpp │ │ ├── luaplugin.h │ │ ├── luatablewriter.cpp │ │ ├── luatablewriter.h │ │ └── plugin.json │ ├── plugins.qbs │ ├── python │ │ ├── plugin.json │ │ ├── python.qbs │ │ ├── pythonbind.cpp │ │ ├── pythonplugin.cpp │ │ ├── pythonplugin.h │ │ ├── qtbinding.py │ │ ├── scripts │ │ │ ├── fotf.py │ │ │ ├── lib │ │ │ │ ├── __init__.py │ │ │ │ ├── cpystruct.py │ │ │ │ ├── lbm.py │ │ │ │ ├── mappy_types.py │ │ │ │ └── utils.py │ │ │ ├── mappy.py │ │ │ ├── pk2.py │ │ │ ├── tileset.py │ │ │ └── zst.py │ │ └── tiledbinding.py │ ├── replicaisland │ │ ├── MAKING_TILESETS_FOR_OBJECTS.txt │ │ ├── cave.png │ │ ├── collision_map.png │ │ ├── grass.png │ │ ├── hotspots.png │ │ ├── island.png │ │ ├── lab.png │ │ ├── objects.png │ │ ├── plugin.json │ │ ├── replicaisland.qbs │ │ ├── replicaisland.qrc │ │ ├── replicaisland_global.h │ │ ├── replicaislandplugin.cpp │ │ ├── replicaislandplugin.h │ │ ├── sewage.png │ │ ├── titletileset.png │ │ └── tutorial.png │ ├── rpd │ │ ├── plugin.json │ │ ├── qjsonparser │ │ │ ├── json.cpp │ │ │ └── json.h │ │ ├── rpd.qbs │ │ ├── rpd_global.h │ │ ├── rpdplugin.cpp │ │ └── rpdplugin.h │ ├── rpmap │ │ ├── plugin.json │ │ ├── rpmap.qbs │ │ ├── rpmap_global.h │ │ ├── rpmapplugin.cpp │ │ └── rpmapplugin.h │ ├── tbin │ │ ├── plugin.json │ │ ├── tbin.qbs │ │ ├── tbin │ │ │ ├── FakeSfml.hpp │ │ │ ├── Layer.hpp │ │ │ ├── Map.cpp │ │ │ ├── Map.hpp │ │ │ ├── PropertyValue.hpp │ │ │ ├── Tile.hpp │ │ │ └── TileSheet.hpp │ │ ├── tbin_global.h │ │ ├── tbinplugin.cpp │ │ └── tbinplugin.h │ ├── tengine │ │ ├── plugin.json │ │ ├── tengine.qbs │ │ ├── tengine_global.h │ │ ├── tengineplugin.cpp │ │ └── tengineplugin.h │ ├── tscn │ │ ├── plugin.json │ │ ├── tscn.qbs │ │ ├── tscn_global.h │ │ ├── tscnplugin.cpp │ │ └── tscnplugin.h │ └── yy │ │ ├── jsonwriter.cpp │ │ ├── jsonwriter.h │ │ ├── plugin.json │ │ ├── yy.qbs │ │ ├── yy_global.h │ │ ├── yyplugin.cpp │ │ └── yyplugin.h ├── qtsingleapplication │ ├── README.TXT │ ├── common.pri │ ├── qtsingleapplication.qbs │ └── src │ │ ├── QtSingleApplication │ │ ├── qtlocalpeer.cpp │ │ ├── qtlocalpeer.h │ │ ├── qtsingleapplication.cpp │ │ ├── qtsingleapplication.h │ │ ├── qtsingleapplication.pri │ │ ├── qtsinglecoreapplication.cpp │ │ ├── qtsinglecoreapplication.h │ │ └── qtsinglecoreapplication.pri ├── terraingenerator │ ├── main.cpp │ └── terraingenerator.qbs ├── tiled │ ├── aboutdialog.cpp │ ├── aboutdialog.h │ ├── aboutdialog.ui │ ├── abstractobjecttool.cpp │ ├── abstractobjecttool.h │ ├── abstracttilefilltool.cpp │ ├── abstracttilefilltool.h │ ├── abstracttileselectiontool.cpp │ ├── abstracttileselectiontool.h │ ├── abstracttiletool.cpp │ ├── abstracttiletool.h │ ├── abstracttool.cpp │ ├── abstracttool.h │ ├── abstractworldtool.cpp │ ├── abstractworldtool.h │ ├── actionmanager.cpp │ ├── actionmanager.h │ ├── actionsearch.cpp │ ├── actionsearch.h │ ├── addremovelayer.cpp │ ├── addremovelayer.h │ ├── addremovemapobject.cpp │ ├── addremovemapobject.h │ ├── addremovetiles.cpp │ ├── addremovetiles.h │ ├── addremovetileset.cpp │ ├── addremovetileset.h │ ├── addremovewangset.cpp │ ├── addremovewangset.h │ ├── adjusttileindexes.cpp │ ├── adjusttileindexes.h │ ├── automapper.cpp │ ├── automapper.h │ ├── automapperwrapper.cpp │ ├── automapperwrapper.h │ ├── automappingmanager.cpp │ ├── automappingmanager.h │ ├── automappingutils.cpp │ ├── automappingutils.h │ ├── brokenlinks.cpp │ ├── brokenlinks.h │ ├── brushitem.cpp │ ├── brushitem.h │ ├── bucketfilltool.cpp │ ├── bucketfilltool.h │ ├── capturestamphelper.cpp │ ├── capturestamphelper.h │ ├── changeevents.h │ ├── changeimagelayerproperty.cpp │ ├── changeimagelayerproperty.h │ ├── changelayer.cpp │ ├── changelayer.h │ ├── changemapobject.cpp │ ├── changemapobject.h │ ├── changemapobjectsorder.cpp │ ├── changemapobjectsorder.h │ ├── changemapproperty.h │ ├── changeobjectgroupproperties.cpp │ ├── changeobjectgroupproperties.h │ ├── changepolygon.cpp │ ├── changepolygon.h │ ├── changeproperties.cpp │ ├── changeproperties.h │ ├── changeselectedarea.cpp │ ├── changeselectedarea.h │ ├── changetile.cpp │ ├── changetile.h │ ├── changetileanimation.cpp │ ├── changetileanimation.h │ ├── changetileimagesource.cpp │ ├── changetileimagesource.h │ ├── changetileobjectgroup.cpp │ ├── changetileobjectgroup.h │ ├── changetilewangid.cpp │ ├── changetilewangid.h │ ├── changevalue.h │ ├── changewangcolordata.cpp │ ├── changewangcolordata.h │ ├── changewangsetdata.cpp │ ├── changewangsetdata.h │ ├── changeworld.cpp │ ├── changeworld.h │ ├── clickablelabel.cpp │ ├── clickablelabel.h │ ├── clipboardmanager.cpp │ ├── clipboardmanager.h │ ├── colorbutton.cpp │ ├── colorbutton.h │ ├── command.cpp │ ├── command.h │ ├── commandbutton.cpp │ ├── commandbutton.h │ ├── commanddatamodel.cpp │ ├── commanddatamodel.h │ ├── commanddialog.cpp │ ├── commanddialog.h │ ├── commanddialog.ui │ ├── commandmanager.cpp │ ├── commandmanager.h │ ├── commandsedit.cpp │ ├── commandsedit.h │ ├── commandsedit.ui │ ├── consoledock.cpp │ ├── consoledock.h │ ├── createcapsuleobjecttool.cpp │ ├── createcapsuleobjecttool.h │ ├── createellipseobjecttool.cpp │ ├── createellipseobjecttool.h │ ├── createobjecttool.cpp │ ├── createobjecttool.h │ ├── createpointobjecttool.cpp │ ├── createpointobjecttool.h │ ├── createpolygonobjecttool.cpp │ ├── createpolygonobjecttool.h │ ├── createrectangleobjecttool.cpp │ ├── createrectangleobjecttool.h │ ├── createscalableobjecttool.cpp │ ├── createscalableobjecttool.h │ ├── createtemplatetool.cpp │ ├── createtemplatetool.h │ ├── createtextobjecttool.cpp │ ├── createtextobjecttool.h │ ├── createtileobjecttool.cpp │ ├── createtileobjecttool.h │ ├── debugdrawitem.cpp │ ├── debugdrawitem.h │ ├── document.cpp │ ├── document.h │ ├── documentmanager.cpp │ ├── documentmanager.h │ ├── donationpopup.cpp │ ├── donationpopup.h │ ├── editableasset.cpp │ ├── editableasset.h │ ├── editablegrouplayer.cpp │ ├── editablegrouplayer.h │ ├── editableimagelayer.cpp │ ├── editableimagelayer.h │ ├── editablelayer.cpp │ ├── editablelayer.h │ ├── editablemap.cpp │ ├── editablemap.h │ ├── editablemapobject.cpp │ ├── editablemapobject.h │ ├── editableobject.cpp │ ├── editableobject.h │ ├── editableobjectgroup.cpp │ ├── editableobjectgroup.h │ ├── editableproject.cpp │ ├── editableproject.h │ ├── editableselectedarea.cpp │ ├── editableselectedarea.h │ ├── editabletile.cpp │ ├── editabletile.h │ ├── editabletilelayer.cpp │ ├── editabletilelayer.h │ ├── editabletileset.cpp │ ├── editabletileset.h │ ├── editablewangset.cpp │ ├── editablewangset.h │ ├── editableworld.cpp │ ├── editableworld.h │ ├── editor.cpp │ ├── editor.h │ ├── editpolygontool.cpp │ ├── editpolygontool.h │ ├── eraser.cpp │ ├── eraser.h │ ├── erasetiles.cpp │ ├── erasetiles.h │ ├── exportasimagedialog.cpp │ ├── exportasimagedialog.h │ ├── exportasimagedialog.ui │ ├── exporthelper.cpp │ ├── exporthelper.h │ ├── expressionspinbox.cpp │ ├── expressionspinbox.h │ ├── filechangedwarning.cpp │ ├── filechangedwarning.h │ ├── fileedit.cpp │ ├── fileedit.h │ ├── filteredit.cpp │ ├── filteredit.h │ ├── flexiblescrollbar.cpp │ ├── flexiblescrollbar.h │ ├── flipmapobjects.cpp │ ├── flipmapobjects.h │ ├── geometry.cpp │ ├── geometry.h │ ├── grouplayeritem.cpp │ ├── grouplayeritem.h │ ├── iconcheckdelegate.cpp │ ├── iconcheckdelegate.h │ ├── id.cpp │ ├── id.h │ ├── imagecolorpickerwidget.cpp │ ├── imagecolorpickerwidget.h │ ├── imagecolorpickerwidget.ui │ ├── imagelayeritem.cpp │ ├── imagelayeritem.h │ ├── issuescounter.cpp │ ├── issuescounter.h │ ├── issuesdock.cpp │ ├── issuesdock.h │ ├── issuesmodel.cpp │ ├── issuesmodel.h │ ├── languagemanager.cpp │ ├── languagemanager.h │ ├── layerdock.cpp │ ├── layerdock.h │ ├── layeritem.cpp │ ├── layeritem.h │ ├── layermodel.cpp │ ├── layermodel.h │ ├── layeroffsettool.cpp │ ├── layeroffsettool.h │ ├── libtilededitor.qbs │ ├── listedit.cpp │ ├── listedit.h │ ├── locatorwidget.cpp │ ├── locatorwidget.h │ ├── magicwandtool.cpp │ ├── magicwandtool.h │ ├── maintoolbar.cpp │ ├── maintoolbar.h │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mapdocument.cpp │ ├── mapdocument.h │ ├── mapdocumentactionhandler.cpp │ ├── mapdocumentactionhandler.h │ ├── mapeditor.cpp │ ├── mapeditor.h │ ├── mapitem.cpp │ ├── mapitem.h │ ├── mapobjectitem.cpp │ ├── mapobjectitem.h │ ├── mapobjectmodel.cpp │ ├── mapobjectmodel.h │ ├── mapscene.cpp │ ├── mapscene.h │ ├── mapview.cpp │ ├── mapview.h │ ├── minimap.cpp │ ├── minimap.h │ ├── minimapdock.cpp │ ├── minimapdock.h │ ├── movelayer.cpp │ ├── movelayer.h │ ├── movemapobjecttogroup.cpp │ ├── movemapobjecttogroup.h │ ├── newmapdialog.cpp │ ├── newmapdialog.h │ ├── newmapdialog.ui │ ├── newsbutton.cpp │ ├── newsbutton.h │ ├── newsfeed.cpp │ ├── newsfeed.h │ ├── newtilesetdialog.cpp │ ├── newtilesetdialog.h │ ├── newtilesetdialog.ui │ ├── newversionbutton.cpp │ ├── newversionbutton.h │ ├── newversionchecker.cpp │ ├── newversionchecker.h │ ├── newversiondialog.cpp │ ├── newversiondialog.h │ ├── newversiondialog.ui │ ├── noeditorwidget.cpp │ ├── noeditorwidget.h │ ├── noeditorwidget.ui │ ├── objectgroupitem.cpp │ ├── objectgroupitem.h │ ├── objectrefdialog.cpp │ ├── objectrefdialog.h │ ├── objectrefdialog.ui │ ├── objectrefedit.cpp │ ├── objectrefedit.h │ ├── objectreferenceitem.cpp │ ├── objectreferenceitem.h │ ├── objectreferenceshelper.cpp │ ├── objectreferenceshelper.h │ ├── objectreferencetool.cpp │ ├── objectreferencetool.h │ ├── objectsdock.cpp │ ├── objectsdock.h │ ├── objectselectionitem.cpp │ ├── objectselectionitem.h │ ├── objectselectiontool.cpp │ ├── objectselectiontool.h │ ├── objectsview.cpp │ ├── objectsview.h │ ├── offsetlayer.cpp │ ├── offsetlayer.h │ ├── offsetmapdialog.cpp │ ├── offsetmapdialog.h │ ├── offsetmapdialog.ui │ ├── painttilelayer.cpp │ ├── painttilelayer.h │ ├── pannableviewhelper.cpp │ ├── pannableviewhelper.h │ ├── pch.h │ ├── pluginlistmodel.cpp │ ├── pluginlistmodel.h │ ├── pointhandle.cpp │ ├── pointhandle.h │ ├── popupwidget.cpp │ ├── popupwidget.h │ ├── preferences.cpp │ ├── preferences.h │ ├── preferencesdialog.cpp │ ├── preferencesdialog.h │ ├── preferencesdialog.ui │ ├── project.cpp │ ├── project.h │ ├── projectdock.cpp │ ├── projectdock.h │ ├── projectdocument.cpp │ ├── projectdocument.h │ ├── projectmanager.cpp │ ├── projectmanager.h │ ├── projectmodel.cpp │ ├── projectmodel.h │ ├── projectpropertiesdialog.cpp │ ├── projectpropertiesdialog.h │ ├── projectpropertiesdialog.ui │ ├── propertiesdock.cpp │ ├── propertiesdock.h │ ├── propertiesview.cpp │ ├── propertiesview.h │ ├── propertieswidget.cpp │ ├── propertieswidget.h │ ├── propertyeditorwidgets.cpp │ ├── propertyeditorwidgets.h │ ├── propertytypeseditor.cpp │ ├── propertytypeseditor.h │ ├── propertytypeseditor.ui │ ├── propertytypesmodel.cpp │ ├── propertytypesmodel.h │ ├── raiselowerhelper.cpp │ ├── raiselowerhelper.h │ ├── randompicker.h │ ├── rangeset.h │ ├── regionvaluetype.cpp │ ├── regionvaluetype.h │ ├── relocatetiles.cpp │ ├── relocatetiles.h │ ├── reparentlayers.cpp │ ├── reparentlayers.h │ ├── replacetemplate.cpp │ ├── replacetemplate.h │ ├── replacetileset.cpp │ ├── replacetileset.h │ ├── resizedialog.cpp │ ├── resizedialog.h │ ├── resizedialog.ui │ ├── resizehelper.cpp │ ├── resizehelper.h │ ├── resizemap.cpp │ ├── resizemap.h │ ├── resizetilelayer.cpp │ ├── resizetilelayer.h │ ├── resources │ │ ├── automap-tiles.svg │ │ ├── automap-tiles.tsx │ │ └── images │ │ │ ├── 14 │ │ │ ├── hidden.png │ │ │ ├── locked.png │ │ │ ├── unlocked.png │ │ │ └── visible.png │ │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── application-exit.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-warning.png │ │ │ ├── document-export.png │ │ │ ├── document-import.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-properties.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── drive-harddisk.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── error.png │ │ │ ├── go-down.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── hidden.png │ │ │ ├── image-missing.png │ │ │ ├── layer-image.png │ │ │ ├── layer-object.png │ │ │ ├── layer-tile.png │ │ │ ├── locked.png │ │ │ ├── mail-read-symbolic.png │ │ │ ├── mail-unread-symbolic.png │ │ │ ├── plugin.png │ │ │ ├── remove.png │ │ │ ├── rename.png │ │ │ ├── selection-add.png │ │ │ ├── selection-intersect.png │ │ │ ├── selection-replace.png │ │ │ ├── selection-subtract.png │ │ │ ├── show_hide_others.png │ │ │ ├── stock-duplicate-16.png │ │ │ ├── stock-tool-color-picker-16.png │ │ │ ├── terminal.png │ │ │ ├── terrain.png │ │ │ ├── tiled.png │ │ │ ├── unlocked.png │ │ │ ├── visible.png │ │ │ ├── window-close.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ │ ├── 22 │ │ │ ├── add-corner.png │ │ │ ├── add-edge.png │ │ │ ├── add.png │ │ │ ├── edit-find.png │ │ │ ├── ellipse-fill.png │ │ │ ├── error.png │ │ │ ├── plugin.png │ │ │ ├── rectangle-fill.png │ │ │ ├── remove.png │ │ │ ├── stock-tool-bucket-fill.png │ │ │ ├── stock-tool-by-color-select.png │ │ │ ├── stock-tool-clone.png │ │ │ ├── stock-tool-color-picker-22.png │ │ │ ├── stock-tool-eraser.png │ │ │ ├── stock-tool-fuzzy-select-22.png │ │ │ ├── stock-tool-move-22.png │ │ │ ├── stock-tool-rect-select.png │ │ │ ├── tool-select-objects.png │ │ │ └── world-move-tool.png │ │ │ ├── 24 │ │ │ ├── animation-edit.png │ │ │ ├── detect-bounding-box.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-warning.png │ │ │ ├── dice.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-properties.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── drive-harddisk.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── flip-horizontal.png │ │ │ ├── flip-vertical.png │ │ │ ├── go-down.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── hidden.png │ │ │ ├── insert-capsule.png │ │ │ ├── insert-ellipse.png │ │ │ ├── insert-image.png │ │ │ ├── insert-object.png │ │ │ ├── insert-point.png │ │ │ ├── insert-polygon.png │ │ │ ├── insert-polyline.png │ │ │ ├── insert-rectangle.png │ │ │ ├── insert-template.png │ │ │ ├── insert-text.png │ │ │ ├── locked.png │ │ │ ├── move-image-layer.png │ │ │ ├── object-capsule.png │ │ │ ├── object-ellipse.png │ │ │ ├── object-image.png │ │ │ ├── object-point.png │ │ │ ├── object-polygon.png │ │ │ ├── object-polyline.png │ │ │ ├── object-rectangle.png │ │ │ ├── object-text.png │ │ │ ├── rotate-left.png │ │ │ ├── rotate-right.png │ │ │ ├── system-run.png │ │ │ ├── terminal.png │ │ │ ├── terrain-edit.png │ │ │ ├── terrain.png │ │ │ ├── tool-edit-polygons.png │ │ │ ├── unlocked.png │ │ │ ├── visible.png │ │ │ ├── wangtile-edit.png │ │ │ ├── wangtile.png │ │ │ ├── world-map-add-other.png │ │ │ ├── world-map-add-this.png │ │ │ ├── world-map-remove-this.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ │ ├── 32 │ │ │ ├── dialog-error.png │ │ │ ├── dialog-warning.png │ │ │ ├── dice.png │ │ │ ├── edit-find.png │ │ │ ├── error.png │ │ │ ├── flip-horizontal.png │ │ │ ├── flip-vertical.png │ │ │ ├── image-missing.png │ │ │ ├── layer-object.png │ │ │ ├── layer-tile.png │ │ │ ├── plugin.png │ │ │ ├── rotate-left.png │ │ │ ├── rotate-right.png │ │ │ ├── terminal.png │ │ │ ├── tiled.png │ │ │ └── wangtile.png │ │ │ ├── 48 │ │ │ ├── detect-bounding-box.png │ │ │ ├── edit-find.png │ │ │ ├── insert-capsule.png │ │ │ ├── insert-ellipse.png │ │ │ ├── insert-image.png │ │ │ ├── insert-point.png │ │ │ ├── insert-polygon.png │ │ │ ├── insert-polyline.png │ │ │ ├── insert-rectangle.png │ │ │ ├── insert-template.png │ │ │ ├── insert-text.png │ │ │ └── tile-collision-editor.png │ │ │ ├── about-tiled-logo-white.png │ │ │ ├── about-tiled-logo.png │ │ │ ├── dock-close.png │ │ │ ├── dock-close@2x.png │ │ │ ├── dock-restore.png │ │ │ ├── dock-restore@2x.png │ │ │ ├── parts │ │ │ ├── icons.tmx │ │ │ └── insert-icon-arrow.png │ │ │ ├── scalable │ │ │ ├── dice.svg │ │ │ ├── dock-close.svg │ │ │ ├── dock-restore.svg │ │ │ ├── edit-delete-symbolic.svg │ │ │ ├── edit-select.svg │ │ │ ├── edit-undo-symbolic.svg │ │ │ ├── fill-full-tiles.svg │ │ │ ├── highlight-current-layer-16.svg │ │ │ ├── highlight-current-layer-24.svg │ │ │ ├── layer-object.svg │ │ │ ├── layer-tile.svg │ │ │ ├── mail-read-symbolic.svg │ │ │ ├── mail-unread-symbolic.svg │ │ │ ├── property-type-class.svg │ │ │ ├── property-type-enum.svg │ │ │ ├── property-type-plain.svg │ │ │ ├── replace.svg │ │ │ ├── search-object-dialog.svg │ │ │ ├── select-object.svg │ │ │ ├── select_enclose.svg │ │ │ ├── select_touch.svg │ │ │ ├── software-update-available-symbolic.svg │ │ │ ├── text-bold-symbolic.svg │ │ │ ├── text-italic-symbolic.svg │ │ │ ├── text-strikethrough-symbolic.svg │ │ │ ├── text-underline-symbolic.svg │ │ │ └── wrap.svg │ │ │ └── tiled-icon.ico │ ├── reversingproxymodel.cpp │ ├── reversingproxymodel.h │ ├── scriptbase64.cpp │ ├── scriptbase64.h │ ├── scriptdialog.cpp │ ├── scriptdialog.h │ ├── scriptedaction.cpp │ ├── scriptedaction.h │ ├── scriptedfileformat.cpp │ ├── scriptedfileformat.h │ ├── scriptedtool.cpp │ ├── scriptedtool.h │ ├── scriptfile.cpp │ ├── scriptfile.h │ ├── scriptfileformatwrappers.cpp │ ├── scriptfileformatwrappers.h │ ├── scriptfileinfo.cpp │ ├── scriptfileinfo.h │ ├── scriptgeometry.cpp │ ├── scriptgeometry.h │ ├── scriptimage.cpp │ ├── scriptimage.h │ ├── scriptmanager.cpp │ ├── scriptmanager.h │ ├── scriptmodule.cpp │ ├── scriptmodule.h │ ├── scriptprocess.cpp │ ├── scriptprocess.h │ ├── scriptpropertytype.cpp │ ├── scriptpropertytype.h │ ├── selectionrectangle.cpp │ ├── selectionrectangle.h │ ├── selectsametiletool.cpp │ ├── selectsametiletool.h │ ├── sentryhelper.cpp │ ├── sentryhelper.h │ ├── session.cpp │ ├── session.h │ ├── shapefilltool.cpp │ ├── shapefilltool.h │ ├── shortcutsettingspage.cpp │ ├── shortcutsettingspage.h │ ├── shortcutsettingspage.ui │ ├── snaphelper.cpp │ ├── snaphelper.h │ ├── stampactions.cpp │ ├── stampactions.h │ ├── stampbrush.cpp │ ├── stampbrush.h │ ├── stylehelper.cpp │ ├── stylehelper.h │ ├── swaptiles.cpp │ ├── swaptiles.h │ ├── tabbar.cpp │ ├── tabbar.h │ ├── templatesdock.cpp │ ├── templatesdock.h │ ├── texteditordialog.cpp │ ├── texteditordialog.h │ ├── texteditordialog.ui │ ├── textpropertyedit.cpp │ ├── textpropertyedit.h │ ├── tileanimationeditor.cpp │ ├── tileanimationeditor.h │ ├── tileanimationeditor.ui │ ├── tilecollisiondock.cpp │ ├── tilecollisiondock.h │ ├── tiledapplication.cpp │ ├── tiledapplication.h │ ├── tilededitor_global.h │ ├── tiledproxystyle.cpp │ ├── tiledproxystyle.h │ ├── tilelayeredit.cpp │ ├── tilelayeredit.h │ ├── tilelayeritem.cpp │ ├── tilelayeritem.h │ ├── tilelayerwangedit.cpp │ ├── tilelayerwangedit.h │ ├── tilepainter.cpp │ ├── tilepainter.h │ ├── tileselectionitem.cpp │ ├── tileselectionitem.h │ ├── tileselectiontool.cpp │ ├── tileselectiontool.h │ ├── tilesetchanges.cpp │ ├── tilesetchanges.h │ ├── tilesetdock.cpp │ ├── tilesetdock.h │ ├── tilesetdocument.cpp │ ├── tilesetdocument.h │ ├── tilesetdocumentsmodel.cpp │ ├── tilesetdocumentsmodel.h │ ├── tileseteditor.cpp │ ├── tileseteditor.h │ ├── tilesetmodel.cpp │ ├── tilesetmodel.h │ ├── tilesetparametersedit.cpp │ ├── tilesetparametersedit.h │ ├── tilesetview.cpp │ ├── tilesetview.h │ ├── tilesetwangsetmodel.cpp │ ├── tilesetwangsetmodel.h │ ├── tilestamp.cpp │ ├── tilestamp.h │ ├── tilestampmanager.cpp │ ├── tilestampmanager.h │ ├── tilestampmodel.cpp │ ├── tilestampmodel.h │ ├── tilestampsdock.cpp │ ├── tilestampsdock.h │ ├── toolmanager.cpp │ ├── toolmanager.h │ ├── transformmapobjects.cpp │ ├── transformmapobjects.h │ ├── treeviewcombobox.cpp │ ├── treeviewcombobox.h │ ├── undocommands.cpp │ ├── undocommands.h │ ├── undodock.cpp │ ├── undodock.h │ ├── utils.cpp │ ├── utils.h │ ├── variantmapproperty.cpp │ ├── variantmapproperty.h │ ├── wangbrush.cpp │ ├── wangbrush.h │ ├── wangcolormodel.cpp │ ├── wangcolormodel.h │ ├── wangcolorview.cpp │ ├── wangcolorview.h │ ├── wangdock.cpp │ ├── wangdock.h │ ├── wangfiller.cpp │ ├── wangfiller.h │ ├── wangoverlay.cpp │ ├── wangoverlay.h │ ├── wangsetmodel.cpp │ ├── wangsetmodel.h │ ├── wangsetview.cpp │ ├── wangsetview.h │ ├── wangtemplatemodel.cpp │ ├── wangtemplatemodel.h │ ├── wangtemplateview.cpp │ ├── wangtemplateview.h │ ├── worlddocument.cpp │ ├── worlddocument.h │ ├── worldmanager.cpp │ ├── worldmanager.h │ ├── worldmovemaptool.cpp │ ├── worldmovemaptool.h │ ├── worldpropertiesdialog.cpp │ ├── worldpropertiesdialog.h │ ├── worldpropertiesdialog.ui │ ├── zoomable.cpp │ └── zoomable.h ├── tiledapp │ ├── Info.plist │ ├── app.entitlements │ ├── commandlineparser.cpp │ ├── commandlineparser.h │ ├── images │ │ ├── 16 │ │ │ ├── application-x-tiled.png │ │ │ └── tiled.png │ │ ├── 32 │ │ │ ├── application-x-tiled.png │ │ │ └── tiled.png │ │ ├── scalable │ │ │ ├── application-x-tiled.svg │ │ │ └── tiled.svg │ │ └── tiled.xcassets │ │ │ ├── Contents.json │ │ │ ├── tiled-icon-mac.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_32x32.png │ │ │ └── icon_512x512.png │ │ │ └── tmx-icon-mac.iconset │ │ │ └── icon_128x128.png │ ├── main.cpp │ ├── tiled.rc.in │ └── tiledapp.qbs ├── tiledquick │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── fontawesome.ttf │ │ ├── fontello-config.json │ │ └── fonts.qrc │ ├── main.cpp │ ├── qml │ │ ├── +android │ │ │ └── main.qml │ │ ├── DragArea.qml │ │ ├── FontAwesome.qml │ │ ├── main.qml │ │ ├── qml.qrc │ │ ├── qmldir │ │ └── qtquickcontrols2.conf │ └── tiledquick.qbs ├── tiledquickplugin │ ├── qmldir │ ├── tiledquickplugin.cpp │ ├── tiledquickplugin.h │ └── tiledquickplugin.qbs ├── tmxrasterizer │ ├── main.cpp │ ├── tmxrasterizer.cpp │ ├── tmxrasterizer.h │ └── tmxrasterizer.qbs └── tmxviewer │ ├── main.cpp │ ├── tmxviewer.cpp │ ├── tmxviewer.h │ └── tmxviewer.qbs ├── tests ├── automapping │ ├── add-tileset │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── automapping.qbs │ ├── grow-region-while-drawing │ │ ├── map.tmx │ │ ├── rules.txt │ │ ├── rules1.tmx │ │ └── rules2.tmx │ ├── ignore-empty-region │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── ignore-flip │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── infinite-target-map │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── inputnot │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── match-type │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── mod-and-offset │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── option-ignore-lock │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── option-no-overlapping-output │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── option-overflow-border │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── option-wrap-border │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── output-probability │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── rule-probability │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── rules-file-recursive │ │ ├── map.tmx │ │ └── rules.txt │ ├── rules-file-references-work-map │ │ ├── map.tmx │ │ └── rules.txt │ ├── simple-2x2-rule │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── simple-replace │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ ├── spr_test_tileset.tsx │ ├── terrain-corner │ │ ├── isometric_grass_and_water.tsx │ │ ├── map-result.tmx │ │ ├── map.tmx │ │ ├── rules.tmx │ │ └── rules.txt │ └── test_automapping.cpp ├── data │ ├── mapobject.tmx │ └── yy-export │ │ └── spr_test_tileset.png ├── errors │ ├── tile_image_not_found_in_tileset.tmx │ ├── tile_image_not_found_in_tileset.tsx │ ├── tileset_image_not_found_in_map.tmx │ ├── tileset_image_not_found_in_tileset.tmx │ ├── tileset_image_not_found_in_tileset.tsx │ └── tileset_not_found.tmx ├── mapreader │ ├── mapreader.qbs │ └── test_mapreader.cpp ├── properties │ ├── properties.qbs │ └── test_properties.cpp ├── staggeredrenderer │ ├── staggeredrenderer.qbs │ └── test_staggeredrenderer.cpp ├── tests.qbs └── wangtiles │ ├── PathAndObjects.png │ ├── PathAndObjects.tsx │ ├── grassAndWater.tsx │ ├── grass_and_water.png │ ├── walkways.png │ ├── walkways.tsx │ ├── wangblob.png │ └── wangblob.tsx ├── tiled.qbs ├── translations ├── tiled_ar_DZ.ts ├── tiled_bg.ts ├── tiled_cs.ts ├── tiled_de.ts ├── tiled_en.ts ├── tiled_es.ts ├── tiled_fi.ts ├── tiled_fr.ts ├── tiled_he.ts ├── tiled_hi.ts ├── tiled_hu.ts ├── tiled_it.ts ├── tiled_ja.ts ├── tiled_ko.ts ├── tiled_lv.ts ├── tiled_mr.ts ├── tiled_nb.ts ├── tiled_nl.ts ├── tiled_pl.ts ├── tiled_pt.ts ├── tiled_pt_PT.ts ├── tiled_ru.ts ├── tiled_sv.ts ├── tiled_ta.ts ├── tiled_th.ts ├── tiled_tr.ts ├── tiled_uk.ts ├── tiled_zh_CN.ts ├── tiled_zh_TW.ts └── translations.qbs └── util └── java ├── CHANGELOG.md ├── README.md ├── libtiled-java ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── mapeditor │ │ │ ├── core │ │ │ ├── AnimatedTile.java │ │ │ ├── Map.java │ │ │ ├── MapLayer.java │ │ │ ├── MapObject.java │ │ │ ├── ObjectGroup.java │ │ │ ├── Properties.java │ │ │ ├── Sprite.java │ │ │ ├── Tile.java │ │ │ ├── TileLayer.java │ │ │ └── TileSet.java │ │ │ ├── io │ │ │ ├── MapReader.java │ │ │ ├── TMXMapReader.java │ │ │ ├── TMXMapWriter.java │ │ │ ├── TilesetCache.java │ │ │ └── xml │ │ │ │ ├── XMLWriter.java │ │ │ │ ├── XMLWriterException.java │ │ │ │ └── package-info.java │ │ │ ├── util │ │ │ ├── BasicTileCutter.java │ │ │ ├── ImageHelper.java │ │ │ ├── StreamHelper.java │ │ │ ├── TileCutter.java │ │ │ ├── TransparentImageFilter.java │ │ │ └── URLHelper.java │ │ │ └── view │ │ │ ├── HexagonalRenderer.java │ │ │ ├── IsometricRenderer.java │ │ │ ├── MapRenderer.java │ │ │ └── OrthogonalRenderer.java │ └── resources │ │ ├── bindings.xjb │ │ ├── map.dtd │ │ ├── map.xsd │ │ └── xs3p.xsl │ └── test │ ├── java │ └── org │ │ └── mapeditor │ │ ├── io │ │ ├── JaxbTest.java │ │ └── MapReaderTest.java │ │ └── util │ │ ├── StreamHelperTest.java │ │ └── URLHelperTest.java │ └── resources │ ├── csvmap │ ├── csvmap.tmx │ └── cvsmap_tileset.png │ ├── csvmap_embedded_image_collection │ ├── csvmap_embedded_image_collection.tmx │ ├── csvmap_embedded_image_collection_1.png │ └── csvmap_embedded_image_collection_2.png │ ├── desert │ ├── desert.tmx │ ├── desert.tsx │ └── tmw_desert_spacing.png │ ├── desert_missing_image │ ├── desert.tmx │ └── desert.tsx │ ├── desert_missing_tileset │ └── desert.tmx │ ├── flipped │ └── flipped.tmx │ ├── hexagonal-mini │ ├── hexagonal-mini.tmx │ └── hexmini.png │ ├── isometric_grass_and_water │ ├── isometric_grass_and_water.png │ ├── isometric_grass_and_water.tmx │ └── isometric_staggered_grass_and_water.tmx │ ├── orthogonal-outside │ ├── buch-outdoor.png │ └── orthogonal-outside.tmx │ ├── perspective_walls │ ├── perspective_walls.png │ ├── perspective_walls.tmx │ └── perspective_walls.tsx │ ├── relative_paths │ └── relative_paths.tmx │ ├── sewer_automap │ ├── rule_001.tmx │ ├── rule_002.tmx │ ├── rule_003.tmx │ ├── rule_004.tmx │ ├── rule_005.tmx │ ├── rule_006.tmx │ ├── rule_007.tmx │ ├── rule_008.tmx │ ├── rule_009.tmx │ ├── rules.txt │ ├── rules_sewers.png │ └── sewers.tmx │ ├── sewer_tileset.png │ ├── sewers │ ├── sewer_tileset.png │ └── sewers.tmx │ ├── staggered.tmx │ └── test_hexagonal_tile │ ├── test_hexagonal_tile_60x60x30.png │ └── test_hexagonal_tile_60x60x30.tmx ├── pom.xml └── tmxviewer-java ├── README.md ├── pom.xml └── src └── main └── java └── TMXViewer.java /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/macos-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/workflows/macos-latest.yml -------------------------------------------------------------------------------- /.github/workflows/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/workflows/packages.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/COPYING -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/LICENSE.APACHE -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dist/archive.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/archive.qbs -------------------------------------------------------------------------------- /dist/distribute.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/distribute.qbs -------------------------------------------------------------------------------- /dist/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/dsa_pub.pem -------------------------------------------------------------------------------- /dist/linux/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/linux/AppRun -------------------------------------------------------------------------------- /dist/linux/push-to-itch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/linux/push-to-itch.sh -------------------------------------------------------------------------------- /dist/linux/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/linux/qt.conf -------------------------------------------------------------------------------- /dist/macos/fixup-install-names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/macos/fixup-install-names.rb -------------------------------------------------------------------------------- /dist/macos/push-to-itch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/macos/push-to-itch.sh -------------------------------------------------------------------------------- /dist/make-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/make-dist.sh -------------------------------------------------------------------------------- /dist/update-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/update-translations.sh -------------------------------------------------------------------------------- /dist/win/Custom_InstallDir.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/Custom_InstallDir.wxs -------------------------------------------------------------------------------- /dist/win/Custom_InstallDirDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/Custom_InstallDirDlg.wxs -------------------------------------------------------------------------------- /dist/win/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/banner.bmp -------------------------------------------------------------------------------- /dist/win/dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/dialog.bmp -------------------------------------------------------------------------------- /dist/win/gpl-2.0.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/gpl-2.0.rtf -------------------------------------------------------------------------------- /dist/win/headerimage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/headerimage.bmp -------------------------------------------------------------------------------- /dist/win/installer.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/installer.qbs -------------------------------------------------------------------------------- /dist/win/installer.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/installer.wxs -------------------------------------------------------------------------------- /dist/win/push-to-itch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/push-to-itch.bat -------------------------------------------------------------------------------- /dist/win/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/dist/win/qt.conf -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_build/gettext/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/_build/gettext/index.pot -------------------------------------------------------------------------------- /docs/_build/gettext/manual.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/_build/gettext/manual.pot -------------------------------------------------------------------------------- /docs/_build/gettext/reference.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/_build/gettext/reference.pot -------------------------------------------------------------------------------- /docs/_build/gettext/sphinx.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/_build/gettext/sphinx.pot -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/docs.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/docs.qbs -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/locale/bg/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/locale/bg/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/de/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/locale/de/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/de/LC_MESSAGES/manual.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/locale/de/LC_MESSAGES/manual.po -------------------------------------------------------------------------------- /docs/locale/de/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/locale/de/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /docs/locale/es/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/locale/es/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manual/automapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/automapping.md -------------------------------------------------------------------------------- /docs/manual/custom-properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/custom-properties.rst -------------------------------------------------------------------------------- /docs/manual/editing-tilesets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/editing-tilesets.rst -------------------------------------------------------------------------------- /docs/manual/export-custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-custom.rst -------------------------------------------------------------------------------- /docs/manual/export-defold.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-defold.rst -------------------------------------------------------------------------------- /docs/manual/export-generic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-generic.rst -------------------------------------------------------------------------------- /docs/manual/export-gmx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-gmx.rst -------------------------------------------------------------------------------- /docs/manual/export-image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-image.rst -------------------------------------------------------------------------------- /docs/manual/export-other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-other.rst -------------------------------------------------------------------------------- /docs/manual/export-tbin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-tbin.rst -------------------------------------------------------------------------------- /docs/manual/export-tscn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-tscn.rst -------------------------------------------------------------------------------- /docs/manual/export-yy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export-yy.rst -------------------------------------------------------------------------------- /docs/manual/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/export.rst -------------------------------------------------------------------------------- /docs/manual/images/tint-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/images/tint-color.png -------------------------------------------------------------------------------- /docs/manual/images/world-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/images/world-view.png -------------------------------------------------------------------------------- /docs/manual/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/introduction.rst -------------------------------------------------------------------------------- /docs/manual/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/layers.rst -------------------------------------------------------------------------------- /docs/manual/objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/objects.rst -------------------------------------------------------------------------------- /docs/manual/preferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/preferences.rst -------------------------------------------------------------------------------- /docs/manual/projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/projects.rst -------------------------------------------------------------------------------- /docs/manual/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/python.rst -------------------------------------------------------------------------------- /docs/manual/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/scripting.rst -------------------------------------------------------------------------------- /docs/manual/terrain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/terrain.rst -------------------------------------------------------------------------------- /docs/manual/using-commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/using-commands.rst -------------------------------------------------------------------------------- /docs/manual/using-templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/using-templates.rst -------------------------------------------------------------------------------- /docs/manual/worlds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/manual/worlds.rst -------------------------------------------------------------------------------- /docs/map.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/map.dtd -------------------------------------------------------------------------------- /docs/map.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/map.xsd -------------------------------------------------------------------------------- /docs/reference/CC-BY-SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/reference/CC-BY-SA.png -------------------------------------------------------------------------------- /docs/reference/tmx-changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/reference/tmx-changelog.rst -------------------------------------------------------------------------------- /docs/reference/tmx-map-format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/reference/tmx-map-format.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scripting-doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/scripting-doc/CHANGELOG.md -------------------------------------------------------------------------------- /docs/scripting-doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/scripting-doc/README.md -------------------------------------------------------------------------------- /docs/scripting-doc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/scripting-doc/index.d.ts -------------------------------------------------------------------------------- /docs/scripting-doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/scripting-doc/package.json -------------------------------------------------------------------------------- /docs/scripting-doc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/docs/scripting-doc/tsconfig.json -------------------------------------------------------------------------------- /examples/buch-outdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/buch-outdoor.png -------------------------------------------------------------------------------- /examples/desert.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/desert.tmx -------------------------------------------------------------------------------- /examples/desert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/desert.tsx -------------------------------------------------------------------------------- /examples/examples.tiled-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/examples.tiled-project -------------------------------------------------------------------------------- /examples/forest/forest.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/forest/forest.tmx -------------------------------------------------------------------------------- /examples/forest/forest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/forest/forest.tsx -------------------------------------------------------------------------------- /examples/forest/squirrel.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/forest/squirrel.license -------------------------------------------------------------------------------- /examples/forest/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/forest/squirrel.png -------------------------------------------------------------------------------- /examples/hexagonal-mini.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/hexagonal-mini.tmx -------------------------------------------------------------------------------- /examples/hexmini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/hexmini.png -------------------------------------------------------------------------------- /examples/objecttypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/objecttypes.xml -------------------------------------------------------------------------------- /examples/orthogonal-outside.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/orthogonal-outside.tmx -------------------------------------------------------------------------------- /examples/perspective_walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/perspective_walls.png -------------------------------------------------------------------------------- /examples/perspective_walls.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/perspective_walls.tmx -------------------------------------------------------------------------------- /examples/perspective_walls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/perspective_walls.tsx -------------------------------------------------------------------------------- /examples/rpg/beach_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/rpg/beach_tileset.png -------------------------------------------------------------------------------- /examples/rpg/beach_tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/rpg/beach_tileset.tsx -------------------------------------------------------------------------------- /examples/rpg/island.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/rpg/island.tmx -------------------------------------------------------------------------------- /examples/rpg/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/rpg/readme.txt -------------------------------------------------------------------------------- /examples/sewer_automap/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/sewer_automap/rules.txt -------------------------------------------------------------------------------- /examples/sewer_automap/sewers.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/sewer_automap/sewers.tmx -------------------------------------------------------------------------------- /examples/sewer_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/sewer_tileset.png -------------------------------------------------------------------------------- /examples/sewers.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/sewers.tmx -------------------------------------------------------------------------------- /examples/sticker-knight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/sticker-knight/README.md -------------------------------------------------------------------------------- /examples/tmw_desert_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/examples/tmw_desert_spacing.png -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/flake.nix -------------------------------------------------------------------------------- /man/tiled.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/man/tiled.1 -------------------------------------------------------------------------------- /man/tiled.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/man/tiled.1.ronn -------------------------------------------------------------------------------- /man/tmxrasterizer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/man/tmxrasterizer.1 -------------------------------------------------------------------------------- /man/tmxrasterizer.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/man/tmxrasterizer.1.ronn -------------------------------------------------------------------------------- /man/tmxviewer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/man/tmxviewer.1 -------------------------------------------------------------------------------- /man/tmxviewer.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/man/tmxviewer.1.ronn -------------------------------------------------------------------------------- /mime/org.mapeditor.Tiled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/mime/org.mapeditor.Tiled.xml -------------------------------------------------------------------------------- /mime/tiled.thumbnailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/mime/tiled.thumbnailer -------------------------------------------------------------------------------- /org.mapeditor.Tiled.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/org.mapeditor.Tiled.appdata.xml -------------------------------------------------------------------------------- /org.mapeditor.Tiled.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/org.mapeditor.Tiled.desktop -------------------------------------------------------------------------------- /qbs/imports/PythonProbe.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/qbs/imports/PythonProbe.qbs -------------------------------------------------------------------------------- /qbs/imports/TiledPlugin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/qbs/imports/TiledPlugin.qbs -------------------------------------------------------------------------------- /qbs/imports/TiledTest.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/qbs/imports/TiledTest.qbs -------------------------------------------------------------------------------- /snap/gui/tiled.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/snap/gui/tiled.desktop -------------------------------------------------------------------------------- /snap/gui/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/snap/gui/tiled.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/karchive/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/AUTHORS -------------------------------------------------------------------------------- /src/karchive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/CMakeLists.txt -------------------------------------------------------------------------------- /src/karchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/README.md -------------------------------------------------------------------------------- /src/karchive/karchive.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/karchive.qbs -------------------------------------------------------------------------------- /src/karchive/metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/metainfo.yaml -------------------------------------------------------------------------------- /src/karchive/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/karchive/src/config-compression.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/karchive/src/k7zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/k7zip.cpp -------------------------------------------------------------------------------- /src/karchive/src/k7zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/k7zip.h -------------------------------------------------------------------------------- /src/karchive/src/kar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kar.cpp -------------------------------------------------------------------------------- /src/karchive/src/kar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kar.h -------------------------------------------------------------------------------- /src/karchive/src/karchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/karchive.cpp -------------------------------------------------------------------------------- /src/karchive/src/karchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/karchive.h -------------------------------------------------------------------------------- /src/karchive/src/karchive_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/karchive_p.h -------------------------------------------------------------------------------- /src/karchive/src/karchiveentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/karchiveentry.h -------------------------------------------------------------------------------- /src/karchive/src/karchivefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/karchivefile.h -------------------------------------------------------------------------------- /src/karchive/src/kbzip2filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kbzip2filter.cpp -------------------------------------------------------------------------------- /src/karchive/src/kbzip2filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kbzip2filter.h -------------------------------------------------------------------------------- /src/karchive/src/kfilterbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kfilterbase.cpp -------------------------------------------------------------------------------- /src/karchive/src/kfilterbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kfilterbase.h -------------------------------------------------------------------------------- /src/karchive/src/kfilterdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kfilterdev.cpp -------------------------------------------------------------------------------- /src/karchive/src/kfilterdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kfilterdev.h -------------------------------------------------------------------------------- /src/karchive/src/kgzipfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kgzipfilter.cpp -------------------------------------------------------------------------------- /src/karchive/src/kgzipfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kgzipfilter.h -------------------------------------------------------------------------------- /src/karchive/src/knonefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/knonefilter.cpp -------------------------------------------------------------------------------- /src/karchive/src/knonefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/knonefilter.h -------------------------------------------------------------------------------- /src/karchive/src/krcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/krcc.cpp -------------------------------------------------------------------------------- /src/karchive/src/krcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/krcc.h -------------------------------------------------------------------------------- /src/karchive/src/ktar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/ktar.cpp -------------------------------------------------------------------------------- /src/karchive/src/ktar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/ktar.h -------------------------------------------------------------------------------- /src/karchive/src/kxzfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kxzfilter.cpp -------------------------------------------------------------------------------- /src/karchive/src/kxzfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kxzfilter.h -------------------------------------------------------------------------------- /src/karchive/src/kzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kzip.cpp -------------------------------------------------------------------------------- /src/karchive/src/kzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kzip.h -------------------------------------------------------------------------------- /src/karchive/src/kzipfileentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/karchive/src/kzipfileentry.h -------------------------------------------------------------------------------- /src/libtiled/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/compression.cpp -------------------------------------------------------------------------------- /src/libtiled/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/compression.h -------------------------------------------------------------------------------- /src/libtiled/containerhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/containerhelpers.h -------------------------------------------------------------------------------- /src/libtiled/fileformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/fileformat.cpp -------------------------------------------------------------------------------- /src/libtiled/fileformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/fileformat.h -------------------------------------------------------------------------------- /src/libtiled/filesystemwatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/filesystemwatcher.h -------------------------------------------------------------------------------- /src/libtiled/gidmapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/gidmapper.cpp -------------------------------------------------------------------------------- /src/libtiled/gidmapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/gidmapper.h -------------------------------------------------------------------------------- /src/libtiled/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/grid.h -------------------------------------------------------------------------------- /src/libtiled/grouplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/grouplayer.cpp -------------------------------------------------------------------------------- /src/libtiled/grouplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/grouplayer.h -------------------------------------------------------------------------------- /src/libtiled/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/hex.cpp -------------------------------------------------------------------------------- /src/libtiled/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/hex.h -------------------------------------------------------------------------------- /src/libtiled/hexagonalrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/hexagonalrenderer.h -------------------------------------------------------------------------------- /src/libtiled/imagecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/imagecache.cpp -------------------------------------------------------------------------------- /src/libtiled/imagecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/imagecache.h -------------------------------------------------------------------------------- /src/libtiled/imagelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/imagelayer.cpp -------------------------------------------------------------------------------- /src/libtiled/imagelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/imagelayer.h -------------------------------------------------------------------------------- /src/libtiled/imagereference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/imagereference.cpp -------------------------------------------------------------------------------- /src/libtiled/imagereference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/imagereference.h -------------------------------------------------------------------------------- /src/libtiled/isometricrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/isometricrenderer.h -------------------------------------------------------------------------------- /src/libtiled/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/layer.cpp -------------------------------------------------------------------------------- /src/libtiled/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/layer.h -------------------------------------------------------------------------------- /src/libtiled/libtiled.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/libtiled.qbs -------------------------------------------------------------------------------- /src/libtiled/logginginterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/logginginterface.cpp -------------------------------------------------------------------------------- /src/libtiled/logginginterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/logginginterface.h -------------------------------------------------------------------------------- /src/libtiled/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/map.cpp -------------------------------------------------------------------------------- /src/libtiled/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/map.h -------------------------------------------------------------------------------- /src/libtiled/mapformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapformat.cpp -------------------------------------------------------------------------------- /src/libtiled/mapformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapformat.h -------------------------------------------------------------------------------- /src/libtiled/mapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapobject.cpp -------------------------------------------------------------------------------- /src/libtiled/mapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapobject.h -------------------------------------------------------------------------------- /src/libtiled/mapreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapreader.cpp -------------------------------------------------------------------------------- /src/libtiled/mapreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapreader.h -------------------------------------------------------------------------------- /src/libtiled/maprenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/maprenderer.cpp -------------------------------------------------------------------------------- /src/libtiled/maprenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/maprenderer.h -------------------------------------------------------------------------------- /src/libtiled/mapwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapwriter.cpp -------------------------------------------------------------------------------- /src/libtiled/mapwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/mapwriter.h -------------------------------------------------------------------------------- /src/libtiled/minimaprenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/minimaprenderer.cpp -------------------------------------------------------------------------------- /src/libtiled/minimaprenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/minimaprenderer.h -------------------------------------------------------------------------------- /src/libtiled/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/object.cpp -------------------------------------------------------------------------------- /src/libtiled/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/object.h -------------------------------------------------------------------------------- /src/libtiled/objectgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/objectgroup.cpp -------------------------------------------------------------------------------- /src/libtiled/objectgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/objectgroup.h -------------------------------------------------------------------------------- /src/libtiled/objecttemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/objecttemplate.cpp -------------------------------------------------------------------------------- /src/libtiled/objecttemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/objecttemplate.h -------------------------------------------------------------------------------- /src/libtiled/objecttypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/objecttypes.cpp -------------------------------------------------------------------------------- /src/libtiled/objecttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/objecttypes.h -------------------------------------------------------------------------------- /src/libtiled/orthogonalrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/orthogonalrenderer.h -------------------------------------------------------------------------------- /src/libtiled/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/plugin.cpp -------------------------------------------------------------------------------- /src/libtiled/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/plugin.h -------------------------------------------------------------------------------- /src/libtiled/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/pluginmanager.cpp -------------------------------------------------------------------------------- /src/libtiled/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/pluginmanager.h -------------------------------------------------------------------------------- /src/libtiled/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/properties.cpp -------------------------------------------------------------------------------- /src/libtiled/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/properties.h -------------------------------------------------------------------------------- /src/libtiled/propertytype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/propertytype.cpp -------------------------------------------------------------------------------- /src/libtiled/propertytype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/propertytype.h -------------------------------------------------------------------------------- /src/libtiled/savefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/savefile.cpp -------------------------------------------------------------------------------- /src/libtiled/savefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/savefile.h -------------------------------------------------------------------------------- /src/libtiled/staggeredrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/staggeredrenderer.h -------------------------------------------------------------------------------- /src/libtiled/templatemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/templatemanager.cpp -------------------------------------------------------------------------------- /src/libtiled/templatemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/templatemanager.h -------------------------------------------------------------------------------- /src/libtiled/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tile.cpp -------------------------------------------------------------------------------- /src/libtiled/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tile.h -------------------------------------------------------------------------------- /src/libtiled/tiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tiled.cpp -------------------------------------------------------------------------------- /src/libtiled/tiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tiled.h -------------------------------------------------------------------------------- /src/libtiled/tiled_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tiled_global.h -------------------------------------------------------------------------------- /src/libtiled/tilelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tilelayer.cpp -------------------------------------------------------------------------------- /src/libtiled/tilelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tilelayer.h -------------------------------------------------------------------------------- /src/libtiled/tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tileset.cpp -------------------------------------------------------------------------------- /src/libtiled/tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tileset.h -------------------------------------------------------------------------------- /src/libtiled/tilesetformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tilesetformat.cpp -------------------------------------------------------------------------------- /src/libtiled/tilesetformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tilesetformat.h -------------------------------------------------------------------------------- /src/libtiled/tilesetmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tilesetmanager.cpp -------------------------------------------------------------------------------- /src/libtiled/tilesetmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tilesetmanager.h -------------------------------------------------------------------------------- /src/libtiled/tmxmapformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tmxmapformat.cpp -------------------------------------------------------------------------------- /src/libtiled/tmxmapformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/tmxmapformat.h -------------------------------------------------------------------------------- /src/libtiled/wangset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/wangset.cpp -------------------------------------------------------------------------------- /src/libtiled/wangset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/wangset.h -------------------------------------------------------------------------------- /src/libtiled/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/world.cpp -------------------------------------------------------------------------------- /src/libtiled/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiled/world.h -------------------------------------------------------------------------------- /src/libtiledquick/mapitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/mapitem.cpp -------------------------------------------------------------------------------- /src/libtiledquick/mapitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/mapitem.h -------------------------------------------------------------------------------- /src/libtiledquick/maploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/maploader.cpp -------------------------------------------------------------------------------- /src/libtiledquick/maploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/maploader.h -------------------------------------------------------------------------------- /src/libtiledquick/mapref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/mapref.h -------------------------------------------------------------------------------- /src/libtiledquick/tilelayeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/tilelayeritem.h -------------------------------------------------------------------------------- /src/libtiledquick/tilesnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/tilesnode.cpp -------------------------------------------------------------------------------- /src/libtiledquick/tilesnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/libtiledquick/tilesnode.h -------------------------------------------------------------------------------- /src/plugins/csv/csv.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/csv/csv.qbs -------------------------------------------------------------------------------- /src/plugins/csv/csv_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/csv/csv_global.h -------------------------------------------------------------------------------- /src/plugins/csv/csvplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/csv/csvplugin.cpp -------------------------------------------------------------------------------- /src/plugins/csv/csvplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/csv/csvplugin.h -------------------------------------------------------------------------------- /src/plugins/csv/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": true } 2 | -------------------------------------------------------------------------------- /src/plugins/defold/defold.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/defold/defold.qbs -------------------------------------------------------------------------------- /src/plugins/defold/defoldplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/defold/defoldplugin.h -------------------------------------------------------------------------------- /src/plugins/defold/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/defoldcollection/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/droidcraft/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/flare/flare.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/flare/flare.qbs -------------------------------------------------------------------------------- /src/plugins/flare/flare_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/flare/flare_global.h -------------------------------------------------------------------------------- /src/plugins/flare/flareplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/flare/flareplugin.cpp -------------------------------------------------------------------------------- /src/plugins/flare/flareplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/flare/flareplugin.h -------------------------------------------------------------------------------- /src/plugins/flare/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/gmx/gmx.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/gmx/gmx.qbs -------------------------------------------------------------------------------- /src/plugins/gmx/gmx_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/gmx/gmx_global.h -------------------------------------------------------------------------------- /src/plugins/gmx/gmxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/gmx/gmxplugin.cpp -------------------------------------------------------------------------------- /src/plugins/gmx/gmxplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/gmx/gmxplugin.h -------------------------------------------------------------------------------- /src/plugins/gmx/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": true } 2 | -------------------------------------------------------------------------------- /src/plugins/json/json.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json/json.qbs -------------------------------------------------------------------------------- /src/plugins/json/json_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json/json_global.h -------------------------------------------------------------------------------- /src/plugins/json/jsonplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json/jsonplugin.cpp -------------------------------------------------------------------------------- /src/plugins/json/jsonplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json/jsonplugin.h -------------------------------------------------------------------------------- /src/plugins/json/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": true } 2 | -------------------------------------------------------------------------------- /src/plugins/json1/json1.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json1/json1.qbs -------------------------------------------------------------------------------- /src/plugins/json1/json_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json1/json_global.h -------------------------------------------------------------------------------- /src/plugins/json1/jsonplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json1/jsonplugin.cpp -------------------------------------------------------------------------------- /src/plugins/json1/jsonplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/json1/jsonplugin.h -------------------------------------------------------------------------------- /src/plugins/json1/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/lua/lua.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/lua/lua.qbs -------------------------------------------------------------------------------- /src/plugins/lua/lua_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/lua/lua_global.h -------------------------------------------------------------------------------- /src/plugins/lua/luaplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/lua/luaplugin.cpp -------------------------------------------------------------------------------- /src/plugins/lua/luaplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/lua/luaplugin.h -------------------------------------------------------------------------------- /src/plugins/lua/luatablewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/lua/luatablewriter.h -------------------------------------------------------------------------------- /src/plugins/lua/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": true } 2 | -------------------------------------------------------------------------------- /src/plugins/plugins.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/plugins.qbs -------------------------------------------------------------------------------- /src/plugins/python/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/python/python.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/python/python.qbs -------------------------------------------------------------------------------- /src/plugins/python/pythonbind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/python/pythonbind.cpp -------------------------------------------------------------------------------- /src/plugins/python/pythonplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/python/pythonplugin.h -------------------------------------------------------------------------------- /src/plugins/python/qtbinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/python/qtbinding.py -------------------------------------------------------------------------------- /src/plugins/python/scripts/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/python/scripts/pk2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/python/scripts/pk2.py -------------------------------------------------------------------------------- /src/plugins/python/scripts/zst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/python/scripts/zst.py -------------------------------------------------------------------------------- /src/plugins/replicaisland/lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/replicaisland/lab.png -------------------------------------------------------------------------------- /src/plugins/replicaisland/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/rpd/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/rpd/rpd.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpd/rpd.qbs -------------------------------------------------------------------------------- /src/plugins/rpd/rpd_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpd/rpd_global.h -------------------------------------------------------------------------------- /src/plugins/rpd/rpdplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpd/rpdplugin.cpp -------------------------------------------------------------------------------- /src/plugins/rpd/rpdplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpd/rpdplugin.h -------------------------------------------------------------------------------- /src/plugins/rpmap/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/rpmap/rpmap.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpmap/rpmap.qbs -------------------------------------------------------------------------------- /src/plugins/rpmap/rpmap_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpmap/rpmap_global.h -------------------------------------------------------------------------------- /src/plugins/rpmap/rpmapplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpmap/rpmapplugin.cpp -------------------------------------------------------------------------------- /src/plugins/rpmap/rpmapplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/rpmap/rpmapplugin.h -------------------------------------------------------------------------------- /src/plugins/tbin/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/tbin/tbin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbin.qbs -------------------------------------------------------------------------------- /src/plugins/tbin/tbin/Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbin/Layer.hpp -------------------------------------------------------------------------------- /src/plugins/tbin/tbin/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbin/Map.cpp -------------------------------------------------------------------------------- /src/plugins/tbin/tbin/Map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbin/Map.hpp -------------------------------------------------------------------------------- /src/plugins/tbin/tbin/Tile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbin/Tile.hpp -------------------------------------------------------------------------------- /src/plugins/tbin/tbin_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbin_global.h -------------------------------------------------------------------------------- /src/plugins/tbin/tbinplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbinplugin.cpp -------------------------------------------------------------------------------- /src/plugins/tbin/tbinplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tbin/tbinplugin.h -------------------------------------------------------------------------------- /src/plugins/tengine/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": false } 2 | -------------------------------------------------------------------------------- /src/plugins/tengine/tengine.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tengine/tengine.qbs -------------------------------------------------------------------------------- /src/plugins/tscn/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": true } 2 | -------------------------------------------------------------------------------- /src/plugins/tscn/tscn.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tscn/tscn.qbs -------------------------------------------------------------------------------- /src/plugins/tscn/tscn_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tscn/tscn_global.h -------------------------------------------------------------------------------- /src/plugins/tscn/tscnplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tscn/tscnplugin.cpp -------------------------------------------------------------------------------- /src/plugins/tscn/tscnplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/tscn/tscnplugin.h -------------------------------------------------------------------------------- /src/plugins/yy/jsonwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/yy/jsonwriter.cpp -------------------------------------------------------------------------------- /src/plugins/yy/jsonwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/yy/jsonwriter.h -------------------------------------------------------------------------------- /src/plugins/yy/plugin.json: -------------------------------------------------------------------------------- 1 | { "defaultEnable": true } 2 | -------------------------------------------------------------------------------- /src/plugins/yy/yy.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/yy/yy.qbs -------------------------------------------------------------------------------- /src/plugins/yy/yy_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/yy/yy_global.h -------------------------------------------------------------------------------- /src/plugins/yy/yyplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/yy/yyplugin.cpp -------------------------------------------------------------------------------- /src/plugins/yy/yyplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/plugins/yy/yyplugin.h -------------------------------------------------------------------------------- /src/qtsingleapplication/src/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /src/terraingenerator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/terraingenerator/main.cpp -------------------------------------------------------------------------------- /src/tiled/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/aboutdialog.cpp -------------------------------------------------------------------------------- /src/tiled/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/aboutdialog.h -------------------------------------------------------------------------------- /src/tiled/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/aboutdialog.ui -------------------------------------------------------------------------------- /src/tiled/abstractobjecttool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstractobjecttool.cpp -------------------------------------------------------------------------------- /src/tiled/abstractobjecttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstractobjecttool.h -------------------------------------------------------------------------------- /src/tiled/abstracttilefilltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstracttilefilltool.h -------------------------------------------------------------------------------- /src/tiled/abstracttiletool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstracttiletool.cpp -------------------------------------------------------------------------------- /src/tiled/abstracttiletool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstracttiletool.h -------------------------------------------------------------------------------- /src/tiled/abstracttool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstracttool.cpp -------------------------------------------------------------------------------- /src/tiled/abstracttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstracttool.h -------------------------------------------------------------------------------- /src/tiled/abstractworldtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstractworldtool.cpp -------------------------------------------------------------------------------- /src/tiled/abstractworldtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/abstractworldtool.h -------------------------------------------------------------------------------- /src/tiled/actionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/actionmanager.cpp -------------------------------------------------------------------------------- /src/tiled/actionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/actionmanager.h -------------------------------------------------------------------------------- /src/tiled/actionsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/actionsearch.cpp -------------------------------------------------------------------------------- /src/tiled/actionsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/actionsearch.h -------------------------------------------------------------------------------- /src/tiled/addremovelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovelayer.cpp -------------------------------------------------------------------------------- /src/tiled/addremovelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovelayer.h -------------------------------------------------------------------------------- /src/tiled/addremovemapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovemapobject.cpp -------------------------------------------------------------------------------- /src/tiled/addremovemapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovemapobject.h -------------------------------------------------------------------------------- /src/tiled/addremovetiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovetiles.cpp -------------------------------------------------------------------------------- /src/tiled/addremovetiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovetiles.h -------------------------------------------------------------------------------- /src/tiled/addremovetileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovetileset.cpp -------------------------------------------------------------------------------- /src/tiled/addremovetileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovetileset.h -------------------------------------------------------------------------------- /src/tiled/addremovewangset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovewangset.cpp -------------------------------------------------------------------------------- /src/tiled/addremovewangset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/addremovewangset.h -------------------------------------------------------------------------------- /src/tiled/adjusttileindexes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/adjusttileindexes.cpp -------------------------------------------------------------------------------- /src/tiled/adjusttileindexes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/adjusttileindexes.h -------------------------------------------------------------------------------- /src/tiled/automapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automapper.cpp -------------------------------------------------------------------------------- /src/tiled/automapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automapper.h -------------------------------------------------------------------------------- /src/tiled/automapperwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automapperwrapper.cpp -------------------------------------------------------------------------------- /src/tiled/automapperwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automapperwrapper.h -------------------------------------------------------------------------------- /src/tiled/automappingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automappingmanager.cpp -------------------------------------------------------------------------------- /src/tiled/automappingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automappingmanager.h -------------------------------------------------------------------------------- /src/tiled/automappingutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automappingutils.cpp -------------------------------------------------------------------------------- /src/tiled/automappingutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/automappingutils.h -------------------------------------------------------------------------------- /src/tiled/brokenlinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/brokenlinks.cpp -------------------------------------------------------------------------------- /src/tiled/brokenlinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/brokenlinks.h -------------------------------------------------------------------------------- /src/tiled/brushitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/brushitem.cpp -------------------------------------------------------------------------------- /src/tiled/brushitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/brushitem.h -------------------------------------------------------------------------------- /src/tiled/bucketfilltool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/bucketfilltool.cpp -------------------------------------------------------------------------------- /src/tiled/bucketfilltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/bucketfilltool.h -------------------------------------------------------------------------------- /src/tiled/capturestamphelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/capturestamphelper.cpp -------------------------------------------------------------------------------- /src/tiled/capturestamphelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/capturestamphelper.h -------------------------------------------------------------------------------- /src/tiled/changeevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeevents.h -------------------------------------------------------------------------------- /src/tiled/changelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changelayer.cpp -------------------------------------------------------------------------------- /src/tiled/changelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changelayer.h -------------------------------------------------------------------------------- /src/tiled/changemapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changemapobject.cpp -------------------------------------------------------------------------------- /src/tiled/changemapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changemapobject.h -------------------------------------------------------------------------------- /src/tiled/changemapobjectsorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changemapobjectsorder.h -------------------------------------------------------------------------------- /src/tiled/changemapproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changemapproperty.h -------------------------------------------------------------------------------- /src/tiled/changepolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changepolygon.cpp -------------------------------------------------------------------------------- /src/tiled/changepolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changepolygon.h -------------------------------------------------------------------------------- /src/tiled/changeproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeproperties.cpp -------------------------------------------------------------------------------- /src/tiled/changeproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeproperties.h -------------------------------------------------------------------------------- /src/tiled/changeselectedarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeselectedarea.cpp -------------------------------------------------------------------------------- /src/tiled/changeselectedarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeselectedarea.h -------------------------------------------------------------------------------- /src/tiled/changetile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetile.cpp -------------------------------------------------------------------------------- /src/tiled/changetile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetile.h -------------------------------------------------------------------------------- /src/tiled/changetileanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetileanimation.cpp -------------------------------------------------------------------------------- /src/tiled/changetileanimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetileanimation.h -------------------------------------------------------------------------------- /src/tiled/changetileimagesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetileimagesource.h -------------------------------------------------------------------------------- /src/tiled/changetileobjectgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetileobjectgroup.h -------------------------------------------------------------------------------- /src/tiled/changetilewangid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetilewangid.cpp -------------------------------------------------------------------------------- /src/tiled/changetilewangid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changetilewangid.h -------------------------------------------------------------------------------- /src/tiled/changevalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changevalue.h -------------------------------------------------------------------------------- /src/tiled/changewangcolordata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changewangcolordata.cpp -------------------------------------------------------------------------------- /src/tiled/changewangcolordata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changewangcolordata.h -------------------------------------------------------------------------------- /src/tiled/changewangsetdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changewangsetdata.cpp -------------------------------------------------------------------------------- /src/tiled/changewangsetdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changewangsetdata.h -------------------------------------------------------------------------------- /src/tiled/changeworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeworld.cpp -------------------------------------------------------------------------------- /src/tiled/changeworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/changeworld.h -------------------------------------------------------------------------------- /src/tiled/clickablelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/clickablelabel.cpp -------------------------------------------------------------------------------- /src/tiled/clickablelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/clickablelabel.h -------------------------------------------------------------------------------- /src/tiled/clipboardmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/clipboardmanager.cpp -------------------------------------------------------------------------------- /src/tiled/clipboardmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/clipboardmanager.h -------------------------------------------------------------------------------- /src/tiled/colorbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/colorbutton.cpp -------------------------------------------------------------------------------- /src/tiled/colorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/colorbutton.h -------------------------------------------------------------------------------- /src/tiled/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/command.cpp -------------------------------------------------------------------------------- /src/tiled/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/command.h -------------------------------------------------------------------------------- /src/tiled/commandbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandbutton.cpp -------------------------------------------------------------------------------- /src/tiled/commandbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandbutton.h -------------------------------------------------------------------------------- /src/tiled/commanddatamodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commanddatamodel.cpp -------------------------------------------------------------------------------- /src/tiled/commanddatamodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commanddatamodel.h -------------------------------------------------------------------------------- /src/tiled/commanddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commanddialog.cpp -------------------------------------------------------------------------------- /src/tiled/commanddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commanddialog.h -------------------------------------------------------------------------------- /src/tiled/commanddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commanddialog.ui -------------------------------------------------------------------------------- /src/tiled/commandmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandmanager.cpp -------------------------------------------------------------------------------- /src/tiled/commandmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandmanager.h -------------------------------------------------------------------------------- /src/tiled/commandsedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandsedit.cpp -------------------------------------------------------------------------------- /src/tiled/commandsedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandsedit.h -------------------------------------------------------------------------------- /src/tiled/commandsedit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/commandsedit.ui -------------------------------------------------------------------------------- /src/tiled/consoledock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/consoledock.cpp -------------------------------------------------------------------------------- /src/tiled/consoledock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/consoledock.h -------------------------------------------------------------------------------- /src/tiled/createobjecttool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createobjecttool.cpp -------------------------------------------------------------------------------- /src/tiled/createobjecttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createobjecttool.h -------------------------------------------------------------------------------- /src/tiled/createpointobjecttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createpointobjecttool.h -------------------------------------------------------------------------------- /src/tiled/createtemplatetool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createtemplatetool.cpp -------------------------------------------------------------------------------- /src/tiled/createtemplatetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createtemplatetool.h -------------------------------------------------------------------------------- /src/tiled/createtextobjecttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createtextobjecttool.h -------------------------------------------------------------------------------- /src/tiled/createtileobjecttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/createtileobjecttool.h -------------------------------------------------------------------------------- /src/tiled/debugdrawitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/debugdrawitem.cpp -------------------------------------------------------------------------------- /src/tiled/debugdrawitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/debugdrawitem.h -------------------------------------------------------------------------------- /src/tiled/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/document.cpp -------------------------------------------------------------------------------- /src/tiled/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/document.h -------------------------------------------------------------------------------- /src/tiled/documentmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/documentmanager.cpp -------------------------------------------------------------------------------- /src/tiled/documentmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/documentmanager.h -------------------------------------------------------------------------------- /src/tiled/donationpopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/donationpopup.cpp -------------------------------------------------------------------------------- /src/tiled/donationpopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/donationpopup.h -------------------------------------------------------------------------------- /src/tiled/editableasset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableasset.cpp -------------------------------------------------------------------------------- /src/tiled/editableasset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableasset.h -------------------------------------------------------------------------------- /src/tiled/editablegrouplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablegrouplayer.cpp -------------------------------------------------------------------------------- /src/tiled/editablegrouplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablegrouplayer.h -------------------------------------------------------------------------------- /src/tiled/editableimagelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableimagelayer.cpp -------------------------------------------------------------------------------- /src/tiled/editableimagelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableimagelayer.h -------------------------------------------------------------------------------- /src/tiled/editablelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablelayer.cpp -------------------------------------------------------------------------------- /src/tiled/editablelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablelayer.h -------------------------------------------------------------------------------- /src/tiled/editablemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablemap.cpp -------------------------------------------------------------------------------- /src/tiled/editablemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablemap.h -------------------------------------------------------------------------------- /src/tiled/editablemapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablemapobject.cpp -------------------------------------------------------------------------------- /src/tiled/editablemapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablemapobject.h -------------------------------------------------------------------------------- /src/tiled/editableobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableobject.cpp -------------------------------------------------------------------------------- /src/tiled/editableobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableobject.h -------------------------------------------------------------------------------- /src/tiled/editableobjectgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableobjectgroup.cpp -------------------------------------------------------------------------------- /src/tiled/editableobjectgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableobjectgroup.h -------------------------------------------------------------------------------- /src/tiled/editableproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableproject.cpp -------------------------------------------------------------------------------- /src/tiled/editableproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableproject.h -------------------------------------------------------------------------------- /src/tiled/editableselectedarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableselectedarea.h -------------------------------------------------------------------------------- /src/tiled/editabletile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editabletile.cpp -------------------------------------------------------------------------------- /src/tiled/editabletile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editabletile.h -------------------------------------------------------------------------------- /src/tiled/editabletilelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editabletilelayer.cpp -------------------------------------------------------------------------------- /src/tiled/editabletilelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editabletilelayer.h -------------------------------------------------------------------------------- /src/tiled/editabletileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editabletileset.cpp -------------------------------------------------------------------------------- /src/tiled/editabletileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editabletileset.h -------------------------------------------------------------------------------- /src/tiled/editablewangset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablewangset.cpp -------------------------------------------------------------------------------- /src/tiled/editablewangset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editablewangset.h -------------------------------------------------------------------------------- /src/tiled/editableworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableworld.cpp -------------------------------------------------------------------------------- /src/tiled/editableworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editableworld.h -------------------------------------------------------------------------------- /src/tiled/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editor.cpp -------------------------------------------------------------------------------- /src/tiled/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editor.h -------------------------------------------------------------------------------- /src/tiled/editpolygontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editpolygontool.cpp -------------------------------------------------------------------------------- /src/tiled/editpolygontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/editpolygontool.h -------------------------------------------------------------------------------- /src/tiled/eraser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/eraser.cpp -------------------------------------------------------------------------------- /src/tiled/eraser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/eraser.h -------------------------------------------------------------------------------- /src/tiled/erasetiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/erasetiles.cpp -------------------------------------------------------------------------------- /src/tiled/erasetiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/erasetiles.h -------------------------------------------------------------------------------- /src/tiled/exportasimagedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/exportasimagedialog.cpp -------------------------------------------------------------------------------- /src/tiled/exportasimagedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/exportasimagedialog.h -------------------------------------------------------------------------------- /src/tiled/exportasimagedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/exportasimagedialog.ui -------------------------------------------------------------------------------- /src/tiled/exporthelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/exporthelper.cpp -------------------------------------------------------------------------------- /src/tiled/exporthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/exporthelper.h -------------------------------------------------------------------------------- /src/tiled/expressionspinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/expressionspinbox.cpp -------------------------------------------------------------------------------- /src/tiled/expressionspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/expressionspinbox.h -------------------------------------------------------------------------------- /src/tiled/filechangedwarning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/filechangedwarning.cpp -------------------------------------------------------------------------------- /src/tiled/filechangedwarning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/filechangedwarning.h -------------------------------------------------------------------------------- /src/tiled/fileedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/fileedit.cpp -------------------------------------------------------------------------------- /src/tiled/fileedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/fileedit.h -------------------------------------------------------------------------------- /src/tiled/filteredit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/filteredit.cpp -------------------------------------------------------------------------------- /src/tiled/filteredit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/filteredit.h -------------------------------------------------------------------------------- /src/tiled/flexiblescrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/flexiblescrollbar.cpp -------------------------------------------------------------------------------- /src/tiled/flexiblescrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/flexiblescrollbar.h -------------------------------------------------------------------------------- /src/tiled/flipmapobjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/flipmapobjects.cpp -------------------------------------------------------------------------------- /src/tiled/flipmapobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/flipmapobjects.h -------------------------------------------------------------------------------- /src/tiled/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/geometry.cpp -------------------------------------------------------------------------------- /src/tiled/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/geometry.h -------------------------------------------------------------------------------- /src/tiled/grouplayeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/grouplayeritem.cpp -------------------------------------------------------------------------------- /src/tiled/grouplayeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/grouplayeritem.h -------------------------------------------------------------------------------- /src/tiled/iconcheckdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/iconcheckdelegate.cpp -------------------------------------------------------------------------------- /src/tiled/iconcheckdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/iconcheckdelegate.h -------------------------------------------------------------------------------- /src/tiled/id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/id.cpp -------------------------------------------------------------------------------- /src/tiled/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/id.h -------------------------------------------------------------------------------- /src/tiled/imagelayeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/imagelayeritem.cpp -------------------------------------------------------------------------------- /src/tiled/imagelayeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/imagelayeritem.h -------------------------------------------------------------------------------- /src/tiled/issuescounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/issuescounter.cpp -------------------------------------------------------------------------------- /src/tiled/issuescounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/issuescounter.h -------------------------------------------------------------------------------- /src/tiled/issuesdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/issuesdock.cpp -------------------------------------------------------------------------------- /src/tiled/issuesdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/issuesdock.h -------------------------------------------------------------------------------- /src/tiled/issuesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/issuesmodel.cpp -------------------------------------------------------------------------------- /src/tiled/issuesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/issuesmodel.h -------------------------------------------------------------------------------- /src/tiled/languagemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/languagemanager.cpp -------------------------------------------------------------------------------- /src/tiled/languagemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/languagemanager.h -------------------------------------------------------------------------------- /src/tiled/layerdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layerdock.cpp -------------------------------------------------------------------------------- /src/tiled/layerdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layerdock.h -------------------------------------------------------------------------------- /src/tiled/layeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layeritem.cpp -------------------------------------------------------------------------------- /src/tiled/layeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layeritem.h -------------------------------------------------------------------------------- /src/tiled/layermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layermodel.cpp -------------------------------------------------------------------------------- /src/tiled/layermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layermodel.h -------------------------------------------------------------------------------- /src/tiled/layeroffsettool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layeroffsettool.cpp -------------------------------------------------------------------------------- /src/tiled/layeroffsettool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/layeroffsettool.h -------------------------------------------------------------------------------- /src/tiled/libtilededitor.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/libtilededitor.qbs -------------------------------------------------------------------------------- /src/tiled/listedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/listedit.cpp -------------------------------------------------------------------------------- /src/tiled/listedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/listedit.h -------------------------------------------------------------------------------- /src/tiled/locatorwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/locatorwidget.cpp -------------------------------------------------------------------------------- /src/tiled/locatorwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/locatorwidget.h -------------------------------------------------------------------------------- /src/tiled/magicwandtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/magicwandtool.cpp -------------------------------------------------------------------------------- /src/tiled/magicwandtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/magicwandtool.h -------------------------------------------------------------------------------- /src/tiled/maintoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/maintoolbar.cpp -------------------------------------------------------------------------------- /src/tiled/maintoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/maintoolbar.h -------------------------------------------------------------------------------- /src/tiled/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mainwindow.cpp -------------------------------------------------------------------------------- /src/tiled/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mainwindow.h -------------------------------------------------------------------------------- /src/tiled/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mainwindow.ui -------------------------------------------------------------------------------- /src/tiled/mapdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapdocument.cpp -------------------------------------------------------------------------------- /src/tiled/mapdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapdocument.h -------------------------------------------------------------------------------- /src/tiled/mapeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapeditor.cpp -------------------------------------------------------------------------------- /src/tiled/mapeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapeditor.h -------------------------------------------------------------------------------- /src/tiled/mapitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapitem.cpp -------------------------------------------------------------------------------- /src/tiled/mapitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapitem.h -------------------------------------------------------------------------------- /src/tiled/mapobjectitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapobjectitem.cpp -------------------------------------------------------------------------------- /src/tiled/mapobjectitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapobjectitem.h -------------------------------------------------------------------------------- /src/tiled/mapobjectmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapobjectmodel.cpp -------------------------------------------------------------------------------- /src/tiled/mapobjectmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapobjectmodel.h -------------------------------------------------------------------------------- /src/tiled/mapscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapscene.cpp -------------------------------------------------------------------------------- /src/tiled/mapscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapscene.h -------------------------------------------------------------------------------- /src/tiled/mapview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapview.cpp -------------------------------------------------------------------------------- /src/tiled/mapview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/mapview.h -------------------------------------------------------------------------------- /src/tiled/minimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/minimap.cpp -------------------------------------------------------------------------------- /src/tiled/minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/minimap.h -------------------------------------------------------------------------------- /src/tiled/minimapdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/minimapdock.cpp -------------------------------------------------------------------------------- /src/tiled/minimapdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/minimapdock.h -------------------------------------------------------------------------------- /src/tiled/movelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/movelayer.cpp -------------------------------------------------------------------------------- /src/tiled/movelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/movelayer.h -------------------------------------------------------------------------------- /src/tiled/movemapobjecttogroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/movemapobjecttogroup.h -------------------------------------------------------------------------------- /src/tiled/newmapdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newmapdialog.cpp -------------------------------------------------------------------------------- /src/tiled/newmapdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newmapdialog.h -------------------------------------------------------------------------------- /src/tiled/newmapdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newmapdialog.ui -------------------------------------------------------------------------------- /src/tiled/newsbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newsbutton.cpp -------------------------------------------------------------------------------- /src/tiled/newsbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newsbutton.h -------------------------------------------------------------------------------- /src/tiled/newsfeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newsfeed.cpp -------------------------------------------------------------------------------- /src/tiled/newsfeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newsfeed.h -------------------------------------------------------------------------------- /src/tiled/newtilesetdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newtilesetdialog.cpp -------------------------------------------------------------------------------- /src/tiled/newtilesetdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newtilesetdialog.h -------------------------------------------------------------------------------- /src/tiled/newtilesetdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newtilesetdialog.ui -------------------------------------------------------------------------------- /src/tiled/newversionbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversionbutton.cpp -------------------------------------------------------------------------------- /src/tiled/newversionbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversionbutton.h -------------------------------------------------------------------------------- /src/tiled/newversionchecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversionchecker.cpp -------------------------------------------------------------------------------- /src/tiled/newversionchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversionchecker.h -------------------------------------------------------------------------------- /src/tiled/newversiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversiondialog.cpp -------------------------------------------------------------------------------- /src/tiled/newversiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversiondialog.h -------------------------------------------------------------------------------- /src/tiled/newversiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/newversiondialog.ui -------------------------------------------------------------------------------- /src/tiled/noeditorwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/noeditorwidget.cpp -------------------------------------------------------------------------------- /src/tiled/noeditorwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/noeditorwidget.h -------------------------------------------------------------------------------- /src/tiled/noeditorwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/noeditorwidget.ui -------------------------------------------------------------------------------- /src/tiled/objectgroupitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectgroupitem.cpp -------------------------------------------------------------------------------- /src/tiled/objectgroupitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectgroupitem.h -------------------------------------------------------------------------------- /src/tiled/objectrefdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectrefdialog.cpp -------------------------------------------------------------------------------- /src/tiled/objectrefdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectrefdialog.h -------------------------------------------------------------------------------- /src/tiled/objectrefdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectrefdialog.ui -------------------------------------------------------------------------------- /src/tiled/objectrefedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectrefedit.cpp -------------------------------------------------------------------------------- /src/tiled/objectrefedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectrefedit.h -------------------------------------------------------------------------------- /src/tiled/objectreferenceitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectreferenceitem.cpp -------------------------------------------------------------------------------- /src/tiled/objectreferenceitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectreferenceitem.h -------------------------------------------------------------------------------- /src/tiled/objectreferencetool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectreferencetool.cpp -------------------------------------------------------------------------------- /src/tiled/objectreferencetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectreferencetool.h -------------------------------------------------------------------------------- /src/tiled/objectsdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectsdock.cpp -------------------------------------------------------------------------------- /src/tiled/objectsdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectsdock.h -------------------------------------------------------------------------------- /src/tiled/objectselectionitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectselectionitem.cpp -------------------------------------------------------------------------------- /src/tiled/objectselectionitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectselectionitem.h -------------------------------------------------------------------------------- /src/tiled/objectselectiontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectselectiontool.cpp -------------------------------------------------------------------------------- /src/tiled/objectselectiontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectselectiontool.h -------------------------------------------------------------------------------- /src/tiled/objectsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectsview.cpp -------------------------------------------------------------------------------- /src/tiled/objectsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/objectsview.h -------------------------------------------------------------------------------- /src/tiled/offsetlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/offsetlayer.cpp -------------------------------------------------------------------------------- /src/tiled/offsetlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/offsetlayer.h -------------------------------------------------------------------------------- /src/tiled/offsetmapdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/offsetmapdialog.cpp -------------------------------------------------------------------------------- /src/tiled/offsetmapdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/offsetmapdialog.h -------------------------------------------------------------------------------- /src/tiled/offsetmapdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/offsetmapdialog.ui -------------------------------------------------------------------------------- /src/tiled/painttilelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/painttilelayer.cpp -------------------------------------------------------------------------------- /src/tiled/painttilelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/painttilelayer.h -------------------------------------------------------------------------------- /src/tiled/pannableviewhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pannableviewhelper.cpp -------------------------------------------------------------------------------- /src/tiled/pannableviewhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pannableviewhelper.h -------------------------------------------------------------------------------- /src/tiled/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pch.h -------------------------------------------------------------------------------- /src/tiled/pluginlistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pluginlistmodel.cpp -------------------------------------------------------------------------------- /src/tiled/pluginlistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pluginlistmodel.h -------------------------------------------------------------------------------- /src/tiled/pointhandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pointhandle.cpp -------------------------------------------------------------------------------- /src/tiled/pointhandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/pointhandle.h -------------------------------------------------------------------------------- /src/tiled/popupwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/popupwidget.cpp -------------------------------------------------------------------------------- /src/tiled/popupwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/popupwidget.h -------------------------------------------------------------------------------- /src/tiled/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/preferences.cpp -------------------------------------------------------------------------------- /src/tiled/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/preferences.h -------------------------------------------------------------------------------- /src/tiled/preferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/preferencesdialog.cpp -------------------------------------------------------------------------------- /src/tiled/preferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/preferencesdialog.h -------------------------------------------------------------------------------- /src/tiled/preferencesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/preferencesdialog.ui -------------------------------------------------------------------------------- /src/tiled/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/project.cpp -------------------------------------------------------------------------------- /src/tiled/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/project.h -------------------------------------------------------------------------------- /src/tiled/projectdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectdock.cpp -------------------------------------------------------------------------------- /src/tiled/projectdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectdock.h -------------------------------------------------------------------------------- /src/tiled/projectdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectdocument.cpp -------------------------------------------------------------------------------- /src/tiled/projectdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectdocument.h -------------------------------------------------------------------------------- /src/tiled/projectmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectmanager.cpp -------------------------------------------------------------------------------- /src/tiled/projectmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectmanager.h -------------------------------------------------------------------------------- /src/tiled/projectmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectmodel.cpp -------------------------------------------------------------------------------- /src/tiled/projectmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/projectmodel.h -------------------------------------------------------------------------------- /src/tiled/propertiesdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertiesdock.cpp -------------------------------------------------------------------------------- /src/tiled/propertiesdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertiesdock.h -------------------------------------------------------------------------------- /src/tiled/propertiesview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertiesview.cpp -------------------------------------------------------------------------------- /src/tiled/propertiesview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertiesview.h -------------------------------------------------------------------------------- /src/tiled/propertieswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertieswidget.cpp -------------------------------------------------------------------------------- /src/tiled/propertieswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertieswidget.h -------------------------------------------------------------------------------- /src/tiled/propertyeditorwidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertyeditorwidgets.h -------------------------------------------------------------------------------- /src/tiled/propertytypeseditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertytypeseditor.cpp -------------------------------------------------------------------------------- /src/tiled/propertytypeseditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertytypeseditor.h -------------------------------------------------------------------------------- /src/tiled/propertytypeseditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertytypeseditor.ui -------------------------------------------------------------------------------- /src/tiled/propertytypesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertytypesmodel.cpp -------------------------------------------------------------------------------- /src/tiled/propertytypesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/propertytypesmodel.h -------------------------------------------------------------------------------- /src/tiled/raiselowerhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/raiselowerhelper.cpp -------------------------------------------------------------------------------- /src/tiled/raiselowerhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/raiselowerhelper.h -------------------------------------------------------------------------------- /src/tiled/randompicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/randompicker.h -------------------------------------------------------------------------------- /src/tiled/rangeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/rangeset.h -------------------------------------------------------------------------------- /src/tiled/regionvaluetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/regionvaluetype.cpp -------------------------------------------------------------------------------- /src/tiled/regionvaluetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/regionvaluetype.h -------------------------------------------------------------------------------- /src/tiled/relocatetiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/relocatetiles.cpp -------------------------------------------------------------------------------- /src/tiled/relocatetiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/relocatetiles.h -------------------------------------------------------------------------------- /src/tiled/reparentlayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/reparentlayers.cpp -------------------------------------------------------------------------------- /src/tiled/reparentlayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/reparentlayers.h -------------------------------------------------------------------------------- /src/tiled/replacetemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/replacetemplate.cpp -------------------------------------------------------------------------------- /src/tiled/replacetemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/replacetemplate.h -------------------------------------------------------------------------------- /src/tiled/replacetileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/replacetileset.cpp -------------------------------------------------------------------------------- /src/tiled/replacetileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/replacetileset.h -------------------------------------------------------------------------------- /src/tiled/resizedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizedialog.cpp -------------------------------------------------------------------------------- /src/tiled/resizedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizedialog.h -------------------------------------------------------------------------------- /src/tiled/resizedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizedialog.ui -------------------------------------------------------------------------------- /src/tiled/resizehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizehelper.cpp -------------------------------------------------------------------------------- /src/tiled/resizehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizehelper.h -------------------------------------------------------------------------------- /src/tiled/resizemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizemap.cpp -------------------------------------------------------------------------------- /src/tiled/resizemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizemap.h -------------------------------------------------------------------------------- /src/tiled/resizetilelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizetilelayer.cpp -------------------------------------------------------------------------------- /src/tiled/resizetilelayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/resizetilelayer.h -------------------------------------------------------------------------------- /src/tiled/reversingproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/reversingproxymodel.cpp -------------------------------------------------------------------------------- /src/tiled/reversingproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/reversingproxymodel.h -------------------------------------------------------------------------------- /src/tiled/scriptbase64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptbase64.cpp -------------------------------------------------------------------------------- /src/tiled/scriptbase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptbase64.h -------------------------------------------------------------------------------- /src/tiled/scriptdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptdialog.cpp -------------------------------------------------------------------------------- /src/tiled/scriptdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptdialog.h -------------------------------------------------------------------------------- /src/tiled/scriptedaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptedaction.cpp -------------------------------------------------------------------------------- /src/tiled/scriptedaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptedaction.h -------------------------------------------------------------------------------- /src/tiled/scriptedfileformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptedfileformat.cpp -------------------------------------------------------------------------------- /src/tiled/scriptedfileformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptedfileformat.h -------------------------------------------------------------------------------- /src/tiled/scriptedtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptedtool.cpp -------------------------------------------------------------------------------- /src/tiled/scriptedtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptedtool.h -------------------------------------------------------------------------------- /src/tiled/scriptfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptfile.cpp -------------------------------------------------------------------------------- /src/tiled/scriptfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptfile.h -------------------------------------------------------------------------------- /src/tiled/scriptfileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptfileinfo.cpp -------------------------------------------------------------------------------- /src/tiled/scriptfileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptfileinfo.h -------------------------------------------------------------------------------- /src/tiled/scriptgeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptgeometry.cpp -------------------------------------------------------------------------------- /src/tiled/scriptgeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptgeometry.h -------------------------------------------------------------------------------- /src/tiled/scriptimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptimage.cpp -------------------------------------------------------------------------------- /src/tiled/scriptimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptimage.h -------------------------------------------------------------------------------- /src/tiled/scriptmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptmanager.cpp -------------------------------------------------------------------------------- /src/tiled/scriptmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptmanager.h -------------------------------------------------------------------------------- /src/tiled/scriptmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptmodule.cpp -------------------------------------------------------------------------------- /src/tiled/scriptmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptmodule.h -------------------------------------------------------------------------------- /src/tiled/scriptprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptprocess.cpp -------------------------------------------------------------------------------- /src/tiled/scriptprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptprocess.h -------------------------------------------------------------------------------- /src/tiled/scriptpropertytype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptpropertytype.cpp -------------------------------------------------------------------------------- /src/tiled/scriptpropertytype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/scriptpropertytype.h -------------------------------------------------------------------------------- /src/tiled/selectionrectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/selectionrectangle.cpp -------------------------------------------------------------------------------- /src/tiled/selectionrectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/selectionrectangle.h -------------------------------------------------------------------------------- /src/tiled/selectsametiletool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/selectsametiletool.cpp -------------------------------------------------------------------------------- /src/tiled/selectsametiletool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/selectsametiletool.h -------------------------------------------------------------------------------- /src/tiled/sentryhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/sentryhelper.cpp -------------------------------------------------------------------------------- /src/tiled/sentryhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/sentryhelper.h -------------------------------------------------------------------------------- /src/tiled/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/session.cpp -------------------------------------------------------------------------------- /src/tiled/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/session.h -------------------------------------------------------------------------------- /src/tiled/shapefilltool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/shapefilltool.cpp -------------------------------------------------------------------------------- /src/tiled/shapefilltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/shapefilltool.h -------------------------------------------------------------------------------- /src/tiled/shortcutsettingspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/shortcutsettingspage.h -------------------------------------------------------------------------------- /src/tiled/shortcutsettingspage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/shortcutsettingspage.ui -------------------------------------------------------------------------------- /src/tiled/snaphelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/snaphelper.cpp -------------------------------------------------------------------------------- /src/tiled/snaphelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/snaphelper.h -------------------------------------------------------------------------------- /src/tiled/stampactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/stampactions.cpp -------------------------------------------------------------------------------- /src/tiled/stampactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/stampactions.h -------------------------------------------------------------------------------- /src/tiled/stampbrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/stampbrush.cpp -------------------------------------------------------------------------------- /src/tiled/stampbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/stampbrush.h -------------------------------------------------------------------------------- /src/tiled/stylehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/stylehelper.cpp -------------------------------------------------------------------------------- /src/tiled/stylehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/stylehelper.h -------------------------------------------------------------------------------- /src/tiled/swaptiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/swaptiles.cpp -------------------------------------------------------------------------------- /src/tiled/swaptiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/swaptiles.h -------------------------------------------------------------------------------- /src/tiled/tabbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tabbar.cpp -------------------------------------------------------------------------------- /src/tiled/tabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tabbar.h -------------------------------------------------------------------------------- /src/tiled/templatesdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/templatesdock.cpp -------------------------------------------------------------------------------- /src/tiled/templatesdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/templatesdock.h -------------------------------------------------------------------------------- /src/tiled/texteditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/texteditordialog.cpp -------------------------------------------------------------------------------- /src/tiled/texteditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/texteditordialog.h -------------------------------------------------------------------------------- /src/tiled/texteditordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/texteditordialog.ui -------------------------------------------------------------------------------- /src/tiled/textpropertyedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/textpropertyedit.cpp -------------------------------------------------------------------------------- /src/tiled/textpropertyedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/textpropertyedit.h -------------------------------------------------------------------------------- /src/tiled/tileanimationeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileanimationeditor.cpp -------------------------------------------------------------------------------- /src/tiled/tileanimationeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileanimationeditor.h -------------------------------------------------------------------------------- /src/tiled/tileanimationeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileanimationeditor.ui -------------------------------------------------------------------------------- /src/tiled/tilecollisiondock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilecollisiondock.cpp -------------------------------------------------------------------------------- /src/tiled/tilecollisiondock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilecollisiondock.h -------------------------------------------------------------------------------- /src/tiled/tiledapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tiledapplication.cpp -------------------------------------------------------------------------------- /src/tiled/tiledapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tiledapplication.h -------------------------------------------------------------------------------- /src/tiled/tilededitor_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilededitor_global.h -------------------------------------------------------------------------------- /src/tiled/tiledproxystyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tiledproxystyle.cpp -------------------------------------------------------------------------------- /src/tiled/tiledproxystyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tiledproxystyle.h -------------------------------------------------------------------------------- /src/tiled/tilelayeredit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilelayeredit.cpp -------------------------------------------------------------------------------- /src/tiled/tilelayeredit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilelayeredit.h -------------------------------------------------------------------------------- /src/tiled/tilelayeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilelayeritem.cpp -------------------------------------------------------------------------------- /src/tiled/tilelayeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilelayeritem.h -------------------------------------------------------------------------------- /src/tiled/tilelayerwangedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilelayerwangedit.cpp -------------------------------------------------------------------------------- /src/tiled/tilelayerwangedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilelayerwangedit.h -------------------------------------------------------------------------------- /src/tiled/tilepainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilepainter.cpp -------------------------------------------------------------------------------- /src/tiled/tilepainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilepainter.h -------------------------------------------------------------------------------- /src/tiled/tileselectionitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileselectionitem.cpp -------------------------------------------------------------------------------- /src/tiled/tileselectionitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileselectionitem.h -------------------------------------------------------------------------------- /src/tiled/tileselectiontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileselectiontool.cpp -------------------------------------------------------------------------------- /src/tiled/tileselectiontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileselectiontool.h -------------------------------------------------------------------------------- /src/tiled/tilesetchanges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetchanges.cpp -------------------------------------------------------------------------------- /src/tiled/tilesetchanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetchanges.h -------------------------------------------------------------------------------- /src/tiled/tilesetdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetdock.cpp -------------------------------------------------------------------------------- /src/tiled/tilesetdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetdock.h -------------------------------------------------------------------------------- /src/tiled/tilesetdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetdocument.cpp -------------------------------------------------------------------------------- /src/tiled/tilesetdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetdocument.h -------------------------------------------------------------------------------- /src/tiled/tilesetdocumentsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetdocumentsmodel.h -------------------------------------------------------------------------------- /src/tiled/tileseteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileseteditor.cpp -------------------------------------------------------------------------------- /src/tiled/tileseteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tileseteditor.h -------------------------------------------------------------------------------- /src/tiled/tilesetmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetmodel.cpp -------------------------------------------------------------------------------- /src/tiled/tilesetmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetmodel.h -------------------------------------------------------------------------------- /src/tiled/tilesetparametersedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetparametersedit.h -------------------------------------------------------------------------------- /src/tiled/tilesetview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetview.cpp -------------------------------------------------------------------------------- /src/tiled/tilesetview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetview.h -------------------------------------------------------------------------------- /src/tiled/tilesetwangsetmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetwangsetmodel.cpp -------------------------------------------------------------------------------- /src/tiled/tilesetwangsetmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilesetwangsetmodel.h -------------------------------------------------------------------------------- /src/tiled/tilestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestamp.cpp -------------------------------------------------------------------------------- /src/tiled/tilestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestamp.h -------------------------------------------------------------------------------- /src/tiled/tilestampmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestampmanager.cpp -------------------------------------------------------------------------------- /src/tiled/tilestampmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestampmanager.h -------------------------------------------------------------------------------- /src/tiled/tilestampmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestampmodel.cpp -------------------------------------------------------------------------------- /src/tiled/tilestampmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestampmodel.h -------------------------------------------------------------------------------- /src/tiled/tilestampsdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestampsdock.cpp -------------------------------------------------------------------------------- /src/tiled/tilestampsdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/tilestampsdock.h -------------------------------------------------------------------------------- /src/tiled/toolmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/toolmanager.cpp -------------------------------------------------------------------------------- /src/tiled/toolmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/toolmanager.h -------------------------------------------------------------------------------- /src/tiled/transformmapobjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/transformmapobjects.cpp -------------------------------------------------------------------------------- /src/tiled/transformmapobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/transformmapobjects.h -------------------------------------------------------------------------------- /src/tiled/treeviewcombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/treeviewcombobox.cpp -------------------------------------------------------------------------------- /src/tiled/treeviewcombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/treeviewcombobox.h -------------------------------------------------------------------------------- /src/tiled/undocommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/undocommands.cpp -------------------------------------------------------------------------------- /src/tiled/undocommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/undocommands.h -------------------------------------------------------------------------------- /src/tiled/undodock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/undodock.cpp -------------------------------------------------------------------------------- /src/tiled/undodock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/undodock.h -------------------------------------------------------------------------------- /src/tiled/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/utils.cpp -------------------------------------------------------------------------------- /src/tiled/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/utils.h -------------------------------------------------------------------------------- /src/tiled/variantmapproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/variantmapproperty.cpp -------------------------------------------------------------------------------- /src/tiled/variantmapproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/variantmapproperty.h -------------------------------------------------------------------------------- /src/tiled/wangbrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangbrush.cpp -------------------------------------------------------------------------------- /src/tiled/wangbrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangbrush.h -------------------------------------------------------------------------------- /src/tiled/wangcolormodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangcolormodel.cpp -------------------------------------------------------------------------------- /src/tiled/wangcolormodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangcolormodel.h -------------------------------------------------------------------------------- /src/tiled/wangcolorview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangcolorview.cpp -------------------------------------------------------------------------------- /src/tiled/wangcolorview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangcolorview.h -------------------------------------------------------------------------------- /src/tiled/wangdock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangdock.cpp -------------------------------------------------------------------------------- /src/tiled/wangdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangdock.h -------------------------------------------------------------------------------- /src/tiled/wangfiller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangfiller.cpp -------------------------------------------------------------------------------- /src/tiled/wangfiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangfiller.h -------------------------------------------------------------------------------- /src/tiled/wangoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangoverlay.cpp -------------------------------------------------------------------------------- /src/tiled/wangoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangoverlay.h -------------------------------------------------------------------------------- /src/tiled/wangsetmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangsetmodel.cpp -------------------------------------------------------------------------------- /src/tiled/wangsetmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangsetmodel.h -------------------------------------------------------------------------------- /src/tiled/wangsetview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangsetview.cpp -------------------------------------------------------------------------------- /src/tiled/wangsetview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangsetview.h -------------------------------------------------------------------------------- /src/tiled/wangtemplatemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangtemplatemodel.cpp -------------------------------------------------------------------------------- /src/tiled/wangtemplatemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangtemplatemodel.h -------------------------------------------------------------------------------- /src/tiled/wangtemplateview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangtemplateview.cpp -------------------------------------------------------------------------------- /src/tiled/wangtemplateview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/wangtemplateview.h -------------------------------------------------------------------------------- /src/tiled/worlddocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worlddocument.cpp -------------------------------------------------------------------------------- /src/tiled/worlddocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worlddocument.h -------------------------------------------------------------------------------- /src/tiled/worldmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worldmanager.cpp -------------------------------------------------------------------------------- /src/tiled/worldmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worldmanager.h -------------------------------------------------------------------------------- /src/tiled/worldmovemaptool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worldmovemaptool.cpp -------------------------------------------------------------------------------- /src/tiled/worldmovemaptool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worldmovemaptool.h -------------------------------------------------------------------------------- /src/tiled/worldpropertiesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/worldpropertiesdialog.h -------------------------------------------------------------------------------- /src/tiled/zoomable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/zoomable.cpp -------------------------------------------------------------------------------- /src/tiled/zoomable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiled/zoomable.h -------------------------------------------------------------------------------- /src/tiledapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/Info.plist -------------------------------------------------------------------------------- /src/tiledapp/app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/app.entitlements -------------------------------------------------------------------------------- /src/tiledapp/commandlineparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/commandlineparser.h -------------------------------------------------------------------------------- /src/tiledapp/images/16/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/images/16/tiled.png -------------------------------------------------------------------------------- /src/tiledapp/images/32/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/images/32/tiled.png -------------------------------------------------------------------------------- /src/tiledapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/main.cpp -------------------------------------------------------------------------------- /src/tiledapp/tiled.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/tiled.rc.in -------------------------------------------------------------------------------- /src/tiledapp/tiledapp.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledapp/tiledapp.qbs -------------------------------------------------------------------------------- /src/tiledquick/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/fonts/LICENSE.txt -------------------------------------------------------------------------------- /src/tiledquick/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/fonts/README.txt -------------------------------------------------------------------------------- /src/tiledquick/fonts/fonts.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/fonts/fonts.qrc -------------------------------------------------------------------------------- /src/tiledquick/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/main.cpp -------------------------------------------------------------------------------- /src/tiledquick/qml/DragArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/qml/DragArea.qml -------------------------------------------------------------------------------- /src/tiledquick/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/qml/main.qml -------------------------------------------------------------------------------- /src/tiledquick/qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/qml/qml.qrc -------------------------------------------------------------------------------- /src/tiledquick/qml/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/qml/qmldir -------------------------------------------------------------------------------- /src/tiledquick/qml/qtquickcontrols2.conf: -------------------------------------------------------------------------------- 1 | [Controls] 2 | Style=Material 3 | -------------------------------------------------------------------------------- /src/tiledquick/tiledquick.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquick/tiledquick.qbs -------------------------------------------------------------------------------- /src/tiledquickplugin/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tiledquickplugin/qmldir -------------------------------------------------------------------------------- /src/tmxrasterizer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tmxrasterizer/main.cpp -------------------------------------------------------------------------------- /src/tmxrasterizer/tmxrasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tmxrasterizer/tmxrasterizer.h -------------------------------------------------------------------------------- /src/tmxviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tmxviewer/main.cpp -------------------------------------------------------------------------------- /src/tmxviewer/tmxviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tmxviewer/tmxviewer.cpp -------------------------------------------------------------------------------- /src/tmxviewer/tmxviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tmxviewer/tmxviewer.h -------------------------------------------------------------------------------- /src/tmxviewer/tmxviewer.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/src/tmxviewer/tmxviewer.qbs -------------------------------------------------------------------------------- /tests/automapping/add-tileset/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/automapping.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/automapping/automapping.qbs -------------------------------------------------------------------------------- /tests/automapping/ignore-empty-region/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/ignore-flip/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/infinite-target-map/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/inputnot/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/match-type/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/mod-and-offset/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/option-ignore-lock/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/option-no-overlapping-output/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/option-overflow-border/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/option-wrap-border/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/output-probability/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/rule-probability/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/rules-file-recursive/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.txt 2 | 3 | -------------------------------------------------------------------------------- /tests/automapping/rules-file-references-work-map/rules.txt: -------------------------------------------------------------------------------- 1 | ./map.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/simple-2x2-rule/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/simple-replace/rules.txt: -------------------------------------------------------------------------------- 1 | ./rules.tmx 2 | -------------------------------------------------------------------------------- /tests/automapping/terrain-corner/rules.txt: -------------------------------------------------------------------------------- 1 | rules.tmx 2 | 3 | -------------------------------------------------------------------------------- /tests/data/mapobject.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/data/mapobject.tmx -------------------------------------------------------------------------------- /tests/mapreader/mapreader.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/mapreader/mapreader.qbs -------------------------------------------------------------------------------- /tests/properties/properties.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/properties/properties.qbs -------------------------------------------------------------------------------- /tests/tests.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/tests.qbs -------------------------------------------------------------------------------- /tests/wangtiles/grassAndWater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/wangtiles/grassAndWater.tsx -------------------------------------------------------------------------------- /tests/wangtiles/walkways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/wangtiles/walkways.png -------------------------------------------------------------------------------- /tests/wangtiles/walkways.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/wangtiles/walkways.tsx -------------------------------------------------------------------------------- /tests/wangtiles/wangblob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/wangtiles/wangblob.png -------------------------------------------------------------------------------- /tests/wangtiles/wangblob.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tests/wangtiles/wangblob.tsx -------------------------------------------------------------------------------- /tiled.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/tiled.qbs -------------------------------------------------------------------------------- /translations/tiled_ar_DZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_ar_DZ.ts -------------------------------------------------------------------------------- /translations/tiled_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_bg.ts -------------------------------------------------------------------------------- /translations/tiled_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_cs.ts -------------------------------------------------------------------------------- /translations/tiled_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_de.ts -------------------------------------------------------------------------------- /translations/tiled_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_en.ts -------------------------------------------------------------------------------- /translations/tiled_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_es.ts -------------------------------------------------------------------------------- /translations/tiled_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_fi.ts -------------------------------------------------------------------------------- /translations/tiled_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_fr.ts -------------------------------------------------------------------------------- /translations/tiled_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_he.ts -------------------------------------------------------------------------------- /translations/tiled_hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_hi.ts -------------------------------------------------------------------------------- /translations/tiled_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_hu.ts -------------------------------------------------------------------------------- /translations/tiled_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_it.ts -------------------------------------------------------------------------------- /translations/tiled_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_ja.ts -------------------------------------------------------------------------------- /translations/tiled_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_ko.ts -------------------------------------------------------------------------------- /translations/tiled_lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_lv.ts -------------------------------------------------------------------------------- /translations/tiled_mr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_mr.ts -------------------------------------------------------------------------------- /translations/tiled_nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_nb.ts -------------------------------------------------------------------------------- /translations/tiled_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_nl.ts -------------------------------------------------------------------------------- /translations/tiled_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_pl.ts -------------------------------------------------------------------------------- /translations/tiled_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_pt.ts -------------------------------------------------------------------------------- /translations/tiled_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_pt_PT.ts -------------------------------------------------------------------------------- /translations/tiled_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_ru.ts -------------------------------------------------------------------------------- /translations/tiled_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_sv.ts -------------------------------------------------------------------------------- /translations/tiled_ta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_ta.ts -------------------------------------------------------------------------------- /translations/tiled_th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_th.ts -------------------------------------------------------------------------------- /translations/tiled_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_tr.ts -------------------------------------------------------------------------------- /translations/tiled_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_uk.ts -------------------------------------------------------------------------------- /translations/tiled_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_zh_CN.ts -------------------------------------------------------------------------------- /translations/tiled_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/tiled_zh_TW.ts -------------------------------------------------------------------------------- /translations/translations.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/translations/translations.qbs -------------------------------------------------------------------------------- /util/java/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/util/java/CHANGELOG.md -------------------------------------------------------------------------------- /util/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/util/java/README.md -------------------------------------------------------------------------------- /util/java/libtiled-java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/util/java/libtiled-java/README.md -------------------------------------------------------------------------------- /util/java/libtiled-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/util/java/libtiled-java/pom.xml -------------------------------------------------------------------------------- /util/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/util/java/pom.xml -------------------------------------------------------------------------------- /util/java/tmxviewer-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapeditor/tiled/HEAD/util/java/tmxviewer-java/pom.xml --------------------------------------------------------------------------------