Implement character emblem locking/reforging

This commit is contained in:
Melledy
2025-11-16 19:49:03 -08:00
parent 6b699d97ee
commit a868c9f3ed
7 changed files with 286 additions and 2 deletions

View File

@@ -19,6 +19,10 @@ public class CharacterGemPreset {
this.gems = new int[] {-1, -1, -1};
}
public void setName(String name) {
this.name = name;
}
public int getLength() {
return this.getGems().length;
}