mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
15 lines
373 B
Python
15 lines
373 B
Python
![]() |
from typing import ClassVar
|
||
|
|
||
|
from test.TestBase import WorldTestBase
|
||
|
from .. import StardewValleyWorld
|
||
|
|
||
|
|
||
|
class SVTestBase(WorldTestBase):
|
||
|
game = "Stardew Valley"
|
||
|
world: StardewValleyWorld
|
||
|
player: ClassVar[int] = 1
|
||
|
|
||
|
def world_setup(self, *args, **kwargs):
|
||
|
super().world_setup(*args, **kwargs)
|
||
|
self.world = self.multiworld.worlds[self.player]
|