initial commit

This commit is contained in:
AkmalFairuz
2024-12-31 20:57:21 +07:00
commit 0de5415f05
72 changed files with 20340 additions and 0 deletions

7
internal/item/schema.go Normal file
View File

@@ -0,0 +1,7 @@
package item
// schema represents the schema for loading item upgrade data from a JSON file.
type schema struct {
RenamedIDs map[string]string `json:"renamedIds,omitempty"`
RemappedMetas map[string]map[uint32]string `json:"remappedMetas,omitempty"`
}