feat(treasurechest): #64 implement hirarchical treasure chests
Some checks failed
Build Docker Image / Build-Docker-Image (push) Failing after 1m0s

This commit is contained in:
2025-05-12 23:37:47 +02:00
parent df022c9077
commit d5a984e312
18 changed files with 813 additions and 62 deletions

View File

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