aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2024-06-27 21:19:06 +0800
committer简律纯 <i@jyunko.cn>2024-06-27 21:19:06 +0800
commit0f74df0e709672118f06cec1c6fdd02ccfa31e63 (patch)
tree5e662bf090584bfd1313e512139b870a6dcd05f5
parente8fc106776d066e4d8f36e6ea84e5cc98742abff (diff)
downloadHydroRollCore-0f74df0e709672118f06cec1c6fdd02ccfa31e63.tar.gz
HydroRollCore-0f74df0e709672118f06cec1c6fdd02ccfa31e63.zip
chore(file tree): add CustomRule class in hrc.rules.BaseRule
-rw-r--r--hrc/rules/BaseRule/CustomRule.py0
-rw-r--r--hrc/rules/BaseRule/__init__.py35
2 files changed, 0 insertions, 35 deletions
diff --git a/hrc/rules/BaseRule/CustomRule.py b/hrc/rules/BaseRule/CustomRule.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/hrc/rules/BaseRule/CustomRule.py
diff --git a/hrc/rules/BaseRule/__init__.py b/hrc/rules/BaseRule/__init__.py
deleted file mode 100644
index c30e24a..0000000
--- a/hrc/rules/BaseRule/__init__.py
+++ /dev/null
@@ -1,35 +0,0 @@
-import dataclasses
-from dataclasses import dataclass
-from typing import Literal, Optional, Union
-
-from . import JudgeRule
-from . import CharacterCard
-
-@dataclass
-class CustomRule(object):
- """Docstring for CustomRule."""
- property: type
-
-
-@dataclass
-class ExpansionRule(object):
- """Docstring for ExpansionRule."""
- property: type
-
-
-@dataclass
-class Wiki(object):
- """Docstring for Wiki."""
- property: type
-
-
-@dataclass
-class Query(object):
- """Docstring for Query."""
- property: type
-
-
-@dataclass
-class Duration(object):
- """Docstring for Duration."""
- property: type