mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-26 17:02:28 +01:00
docs(pytiled_parser): update description
This commit is contained in:
@@ -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),
|
||||
|
||||
@@ -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__
|
||||
|
||||
Reference in New Issue
Block a user