mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2026-01-06 11:34:34 +01:00
Remove old version import
This commit is contained in:
@@ -1,22 +1,21 @@
|
|||||||
"""Parse Tiled Maps and Tilesets
|
"""Parse Tiled Maps and Tilesets
|
||||||
|
|
||||||
See: https://www.mapeditor.org/
|
See: https://www.mapeditor.org/
|
||||||
|
|
||||||
This library is for parsing JSON formatted Tiled Map Editormaps and tilesets to be
|
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)
|
used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric)
|
||||||
or side-scrolling games in a strictly typed fashion.
|
or side-scrolling games in a strictly typed fashion.
|
||||||
|
|
||||||
PyTiled Parser is not tied to any particular graphics library or game engine.
|
PyTiled Parser is not tied to any particular graphics library or game engine.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# pylint: disable=too-few-public-methods
|
# pylint: disable=too-few-public-methods
|
||||||
|
|
||||||
from .common_types import Color, OrderedPair, Size
|
from .common_types import Color, OrderedPair, Size
|
||||||
from .exception import UnknownFormat
|
from .exception import UnknownFormat
|
||||||
from .layer import Chunk, ImageLayer, Layer, LayerGroup, ObjectLayer, TileLayer
|
from .layer import Chunk, ImageLayer, Layer, LayerGroup, ObjectLayer, TileLayer
|
||||||
from .parser import parse_map, parse_world
|
from .parser import parse_map, parse_world
|
||||||
from .properties import Properties, Property
|
from .properties import Properties, Property
|
||||||
from .tiled_map import TiledMap
|
from .tiled_map import TiledMap
|
||||||
from .tileset import Frame, Grid, Tile, Tileset, Transformations
|
from .tileset import Frame, Grid, Tile, Tileset, Transformations
|
||||||
from .version import __version__
|
from .world import World, WorldMap
|
||||||
from .world import World, WorldMap
|
|
||||||
|
|||||||
Reference in New Issue
Block a user