mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-27 14:52:15 +01:00
10 lines
233 B
Python
10 lines
233 B
Python
"""Parse Tiled Maps and Tilesets"""
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
from .common_types import OrderedPair, Size
|
|
from .layer import Layer
|
|
from .map import Map
|
|
from .properties import Properties
|
|
from .tileset import TileSet
|