Skip to content

Commit e4ab4f1

Browse files
committed
Add type exports to __init__
1 parent d5cbbd4 commit e4ab4f1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pytiled_parser/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,29 @@
1919
from .tiled_map import TiledMap
2020
from .tileset import Frame, Grid, Tile, Tileset, Transformations
2121
from .world import World, WorldMap
22+
23+
__all__ = [
24+
"Color",
25+
"OrderedPair",
26+
"Size"
27+
"UnknownFormat",
28+
"Chunk",
29+
"ImageLayer",
30+
"Layer",
31+
"LayerGroup",
32+
"ObjectLayer",
33+
"TileLayer",
34+
"parse_map",
35+
"parse_world",
36+
"parse_tileset",
37+
"Properties",
38+
"Property",
39+
"TiledMap",
40+
"Frame",
41+
"Grid",
42+
"Tile",
43+
"Tileset",
44+
"Transformations",
45+
"World",
46+
"WorldMap"
47+
]

0 commit comments

Comments
 (0)