mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-27 14:52:15 +01:00
14 lines
251 B
Python
14 lines
251 B
Python
from pathlib import Path
|
|
from typing import Dict, List, NamedTuple, Optional, Union
|
|
|
|
from .common_types import Color
|
|
|
|
|
|
Property = Union[int, float, Path, str, bool, Color]
|
|
|
|
|
|
RawProperties = List[Dict[str, Property]]
|
|
|
|
|
|
Properties = Dict[str, Property]
|