mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
14 lines
242 B
Python
14 lines
242 B
Python
from typing import Dict
|
|
|
|
from Options import Option, Toggle
|
|
|
|
|
|
class HardMode(Toggle):
|
|
"""Only for masochists: requires 2 presses!"""
|
|
display_name = "Hard Mode"
|
|
|
|
|
|
clique_options: Dict[str, type(Option)] = {
|
|
"hard_mode": HardMode
|
|
}
|