mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-27 14:52:15 +01:00
Remove old version import
This commit is contained in:
@@ -1,22 +1,21 @@
|
||||
"""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 .version import __version__
|
||||
from .world import World, WorldMap
|
||||
"""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
|
||||
|
||||
Reference in New Issue
Block a user