stub(layer.Layer): the tiled docs need work

This commit is contained in:
Benjamin Kirkbride
2020-06-07 21:46:29 -04:00
parent be0a3812e3
commit d27b564bbc

View File

@@ -35,15 +35,14 @@ class Layer:
"""
name: str
opacity: float
visible: bool
id: Optional[int] = None
width: Optional[int] = 0
height: Optional[int] = 0
size: Optional[Size] = None
offset: Optional[OrderedPair] = None
opacity: Optional[float] = 1
properties: Optional[properties_.Properties] = None
start: Optional[OrderedPair] = None
visible: Optional[bool] = True
coordinates: Optional[OrderedPair] = None
TileLayerGrid = List[List[int]]