Files
Grinch-AP/worlds/grinch/__init__.py

10 lines
234 B
Python
Raw Normal View History

2025-07-25 19:33:51 -04:00
from typing import ClassVar
from worlds.AutoWorld import World
from . import Options
class GrinchWorld(World):
game: ClassVar[str] = "The Grinch"
options_dataclass = Options.GrinchOptions
options = Options.GrinchOptions