Skip to content

Commit

Permalink
Add type exports to __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleptomania committed Jul 2, 2024
1 parent d5cbbd4 commit e4ab4f1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pytiled_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,29 @@
from .tiled_map import TiledMap
from .tileset import Frame, Grid, Tile, Tileset, Transformations
from .world import World, WorldMap

__all__ = [
"Color",
"OrderedPair",
"Size"
"UnknownFormat",
"Chunk",
"ImageLayer",
"Layer",
"LayerGroup",
"ObjectLayer",
"TileLayer",
"parse_map",
"parse_world",
"parse_tileset",
"Properties",
"Property",
"TiledMap",
"Frame",
"Grid",
"Tile",
"Tileset",
"Transformations",
"World",
"WorldMap"
]

0 comments on commit e4ab4f1

Please sign in to comment.