aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/rules/BaseRule/CharacterCard.py
diff options
context:
space:
mode:
Diffstat (limited to 'hrc/rules/BaseRule/CharacterCard.py')
-rw-r--r--hrc/rules/BaseRule/CharacterCard.py22
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):
+ ...
+