mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-08 14:08:17 -07:00
8 lines
167 B
Python
8 lines
167 B
Python
import typing
|
|
from Options import Option, PerGameCommonOptions
|
|
from dataclasses import dataclass
|
|
|
|
@dataclass
|
|
class ChecksFinderOptions(PerGameCommonOptions):
|
|
pass
|