mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-27 14:52:15 +01:00
22 lines
824 B
Python
22 lines
824 B
Python
"""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
|
|
|
|
from .common_types import Color, OrderedPair, Size
|
|
from .exception import UnknownFormat
|
|
from .layer import Chunk, ImageLayer, Layer, LayerGroup, ObjectLayer, TileLayer
|
|
from .parser import parse_map, parse_world
|
|
from .properties import Properties, Property
|
|
from .tiled_map import TiledMap
|
|
from .tileset import Frame, Grid, Tile, Tileset, Transformations
|
|
from .world import World, WorldMap
|