docs(pytiled_parser): update description

This commit is contained in:
Benjamin Kirkbride
2020-08-20 18:32:25 -04:00
parent d101783f28
commit c95b2bd8d3
2 changed files with 12 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
# PyTiled Parser
PyTiled Parser is a Python Library for parsing JSON formatted
[Tiled Map Editor](https://www.mapeditor.org/) maps and tilesets to be used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) or side-scrolling games.
[Tiled Map Editor](https://www.mapeditor.org/) maps and tilesets to be used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) or side-scrolling games in a strictly typed fashion.
PyTiled Parser is not tied to any particular graphics library, and can be used
with [Arcade](http://arcade.academy),

View File

@@ -1,4 +1,13 @@
"""Parse Tiled Maps and Tilesets"""
"""Parse Tiled Maps and Tilesets
See: https://www.mapeditor.org/
This library is for parsing JSON formatted Tiled Map Editormaps and tilesets to be
used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric)
or side-scrolling games in a strictly typed fashion.
PyTiled Parser is not tied to any particular graphics library or game engine.
"""
# pylint: disable=too-few-public-methods
@@ -7,3 +16,4 @@ from .layer import Layer
from .properties import Properties
from .tiled_map import Map
from .tileset import Tileset
from .version import __version__