summaryrefslogtreecommitdiff
path: root/game.py
diff options
context:
space:
mode:
Diffstat (limited to 'game.py')
-rw-r--r--game.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/game.py b/game.py
index fd9aba0..75162ee 100644
--- a/game.py
+++ b/game.py
@@ -1,6 +1,7 @@
import re
from enum import Enum
from dataclasses import dataclass
+from abc import ABC, abstractmethod
from distribution import Distribution
@@ -85,3 +86,8 @@ class RollInfo:
def distribution(self):
return self.dice_count * d(self.die_size) + self.bonus
+
+class LevelingPlan(ABC):
+ @abstractmethod
+ def build(self, level: int):
+ pass