blob: 77f0ae3585e5e61f7edf76cba318fad2cc780f91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from dataclasses import dataclass
from Options import PerGameCommonOptions, Toggle
class ShuffleDoors(Toggle):
"""If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements."""
display_name = "Shuffle Doors"
@dataclass
class Lingo2Options(PerGameCommonOptions):
shuffle_doors: ShuffleDoors
|