Files
pytiled_parser/pytiled_parser/properties.py
2020-05-30 19:14:51 -04:00

13 lines
270 B
Python

from pathlib import Path
from typing import Dict, List, NamedTuple, Optional, Union
from .common_types import Color
RawProperties = List[Dict[str, Union[str, bool, int, float]]]
Property = Union[int, float, Path, str, bool, Color]
Properties = Dict[str, Property]