2023-03-21 20:23:45 +00:00
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
from Options import Option, Toggle
|
|
|
|
|
|
|
|
|
|
|
|
class HardMode(Toggle):
|
2023-04-08 00:05:16 +00:00
|
|
|
"""Only for the most masochistically inclined... Requires button activation!"""
|
2023-03-21 20:23:45 +00:00
|
|
|
display_name = "Hard Mode"
|
|
|
|
|
|
|
|
|
|
|
|
clique_options: Dict[str, type(Option)] = {
|
|
|
|
"hard_mode": HardMode
|
|
|
|
}
|