mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-04 01:43:43 -07:00
8 lines
252 B
Python
8 lines
252 B
Python
import typing
|
|
from Options import Choice, Option, Toggle, Range
|
|
|
|
terraria_options: typing.Dict[str, type(Option)] = {
|
|
"include_hardmode_achievements": Toggle,
|
|
"include_insane_achievements": Toggle,
|
|
"include_postgame_achievements": Toggle,
|
|
} |