Added an info box showing the total amount of usable metal you own for Giants' foundry, with possibility to filter for any combination of equipment, metal bars and ore.

This commit is contained in:
Christopher Riwik
2025-08-20 17:53:48 +02:00
parent df4c081367
commit 50d72f9635
4 changed files with 410 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
package com.toofifty.easygiantsfoundry.enums;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
public enum Location {
GIANTS_FOUNDRY("Giants' Foundry"),
EVERYWHERE("Everywhere"),
NOWHERE("Nowhere");
private final String type;
@Override
public String toString() {
return type;
}
}