mirror of
https://github.com/enzet/map-machine.git
synced 2025-07-29 06:18:53 +02:00
11 lines
265 B
Python
11 lines
265 B
Python
from pathlib import Path
|
|
|
|
from roentgen.icon import ShapeExtractor
|
|
from roentgen.scheme import Scheme
|
|
|
|
SCHEME: Scheme = Scheme(Path("scheme/default.yml"))
|
|
SCHEME_EXTRACTOR: ShapeExtractor = ShapeExtractor(
|
|
Path("icons/icons.svg"), Path("icons/config.json")
|
|
)
|
|
|
|
|