mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-08-05 11:36:24 -07:00
Co-authored-by: Remy Jette <[email protected]> Co-authored-by: Jouramie <[email protected]> Co-authored-by: Aaron Wagener <[email protected]>
11 lines
225 B
Python
11 lines
225 B
Python
from dataclasses import dataclass
|
|
|
|
from .game_item import ItemSource
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class MachineSource(ItemSource):
|
|
item: str # this should be optional (worm bin)
|
|
machine: str
|
|
# seasons
|