mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-28 15:22:28 +01:00
13 lines
270 B
Python
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]
|