diff options
Diffstat (limited to 'game.py')
| -rw-r--r-- | game.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |
