feat: added rerolling and dice clearing

This commit is contained in:
Sara Gerretsen 2025-10-28 12:31:24 +01:00
parent 7adf2d9528
commit aa10c821f1
4 changed files with 46 additions and 17 deletions

View file

@ -42,6 +42,7 @@ static inline size_t DieToIndex(Die die) {
namespace active_dice {
void Add(Die die);
void Remove(size_t at);
void Clear();
Die Get(size_t at);
uint8_t GetValue(size_t at);
size_t Count();