mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
FF1: Switching Options System (#3302)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from typing import Dict
|
||||
from dataclasses import dataclass
|
||||
|
||||
from Options import OptionDict
|
||||
from Options import OptionDict, PerGameCommonOptions
|
||||
|
||||
|
||||
class Locations(OptionDict):
|
||||
@@ -18,8 +18,8 @@ class Rules(OptionDict):
|
||||
display_name = "rules"
|
||||
|
||||
|
||||
ff1_options: Dict[str, OptionDict] = {
|
||||
"locations": Locations,
|
||||
"items": Items,
|
||||
"rules": Rules
|
||||
}
|
||||
@dataclass
|
||||
class FF1Options(PerGameCommonOptions):
|
||||
locations: Locations
|
||||
items: Items
|
||||
rules: Rules
|
||||
|
Reference in New Issue
Block a user