feat(treasurechest): #64 implement hirarchical treasure chests
Some checks failed
Build Docker Image / Build-Docker-Image (push) Has been cancelled

This commit is contained in:
2025-05-12 23:37:47 +02:00
parent df022c9077
commit 582fcb885e
21 changed files with 868 additions and 108 deletions

View File

@@ -19,7 +19,7 @@ type Random interface {
type RandomImpl struct {
}
func NewRandomImpl() *RandomImpl {
func NewRandom() *RandomImpl {
return &RandomImpl{}
}