diff options
| author | 2024-06-26 09:20:15 +0800 | |
|---|---|---|
| committer | 2024-06-26 09:20:15 +0800 | |
| commit | dcadac73813291a86a4ab3aca44706fc9b8e3b5e (patch) | |
| tree | 44aaffb958b1375c0124f93fe8079205e9453b85 /hrc/rules/BaseRule/CharacterCard.py | |
| parent | a2477b28057251c4685dbf0b56359dee7b595bfa (diff) | |
| download | HydroRollCore-dcadac73813291a86a4ab3aca44706fc9b8e3b5e.tar.gz HydroRollCore-dcadac73813291a86a4ab3aca44706fc9b8e3b5e.zip | |
chore(docs): add structures.svg and contributing guidance
Diffstat (limited to 'hrc/rules/BaseRule/CharacterCard.py')
| -rw-r--r-- | hrc/rules/BaseRule/CharacterCard.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/hrc/rules/BaseRule/CharacterCard.py b/hrc/rules/BaseRule/CharacterCard.py new file mode 100644 index 0000000..6d09e5a --- /dev/null +++ b/hrc/rules/BaseRule/CharacterCard.py @@ -0,0 +1,22 @@ +import dataclasses +from dataclasses import dataclass +from typing import Literal, Optional, Union + + +@dataclass +class Custom(object): + """Docstring for Custom.""" + property: type + + +class Attribute(Custom): + ... + + +class Skill(Custom): + ... + + +class Information(Custom): + ... + |
