mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2026-01-23 10:51:50 +01:00
fix(layer): Fixed tiled_object import
This commit is contained in:
@@ -7,8 +7,8 @@ import attr
|
|||||||
from typing_extensions import TypedDict
|
from typing_extensions import TypedDict
|
||||||
|
|
||||||
from . import properties as properties_
|
from . import properties as properties_
|
||||||
|
from . import tiled_object
|
||||||
from .common_types import Color, OrderedPair, Size
|
from .common_types import Color, OrderedPair, Size
|
||||||
from .tiled_object import RawTiledObject, TiledObject
|
|
||||||
|
|
||||||
|
|
||||||
@attr.s(auto_attribs=True, kw_only=True)
|
@attr.s(auto_attribs=True, kw_only=True)
|
||||||
@@ -111,7 +111,7 @@ class ObjectLayer(Layer):
|
|||||||
for more info.
|
for more info.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
tiled_objects: List[TiledObject]
|
tiled_objects: List[tiled_object.TiledObject]
|
||||||
|
|
||||||
draw_order: Optional[str] = "topdown"
|
draw_order: Optional[str] = "topdown"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user