mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-07-28 10:20:47 -07:00
19 lines
304 B
Python
19 lines
304 B
Python
import typing
|
|
from Options import Choice, Option
|
|
|
|
|
|
class SampleOption(Choice):
|
|
"""
|
|
This is a sample option.
|
|
"""
|
|
display_name = "Sample Option"
|
|
option_1 = 1
|
|
option_2 = 2
|
|
default = 0
|
|
|
|
|
|
dark_souls_options: typing.Dict[str, type(Option)] = {
|
|
"sample_option": SampleOption,
|
|
}
|
|
|