aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/hydrorollcore
diff options
context:
space:
mode:
Diffstat (limited to 'src/hydrorollcore')
-rw-r--r--src/hydrorollcore/rule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hydrorollcore/rule.py b/src/hydrorollcore/rule.py
index d2ea4a19..127ed805 100644
--- a/src/hydrorollcore/rule.py
+++ b/src/hydrorollcore/rule.py
@@ -2,7 +2,7 @@ from abc import ABCMeta, abstractmethod
from enum import Enum
from .exceptions import HydroError
-__all__ = ["RuleLoadType", "Rule"]
+__all__ = ["RuleLoadType", "Result", "Dice", "Rule"]
class RuleLoadType(Enum):
@@ -69,5 +69,5 @@ class Rule(metaclass=ABCMeta):
raise NotImplementedError
@abstractmethod
- def check(self) -> Result:
+ def check(self, dice: Dice) -> Result:
raise NotImplementedError