12 lines
356 B
Python
12 lines
356 B
Python
from lib_marker import MarkerSet
|
|
|
|
from .nether import MARKER_SETS as nether_marker_sets
|
|
from .overworld import MARKER_SETS as overworld_marker_sets
|
|
from .the_end import MARKER_SETS as the_end_marker_sets
|
|
|
|
WORLDS: dict[str, list[MarkerSet]] = {
|
|
"Nether": nether_marker_sets,
|
|
"Overworld": overworld_marker_sets,
|
|
"The End": the_end_marker_sets,
|
|
}
|