forked from mirror/Archipelago
Co-authored-by: Remy Jette <[email protected]> Co-authored-by: Jouramie <[email protected]> Co-authored-by: Aaron Wagener <[email protected]>
8 lines
138 B
Python
8 lines
138 B
Python
from dataclasses import dataclass, field
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class Skill:
|
|
name: str
|
|
has_mastery: bool = field(kw_only=True)
|