Refactor savedata struct to include EggPity and UnlockPity

This commit is contained in:
Frederico Santos 2024-06-03 22:38:45 +01:00
parent 68caa148f6
commit 58c1687df7

View File

@ -33,6 +33,8 @@ type SystemSaveData struct {
VoucherUnlocks VoucherUnlocks `json:"voucherUnlocks"`
VoucherCounts VoucherCounts `json:"voucherCounts"`
Eggs []EggData `json:"eggs"`
EggPity []int `json:"eggPity"`
UnlockPity []int `json:"unlockPity"`
GameVersion string `json:"gameVersion"`
Timestamp int `json:"timestamp"`
}