1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-12 10:40:42 +00:00
OpenDiablo2/d2core/d2records/storepage_record.go
2020-10-21 23:41:21 -07:00

11 lines
242 B
Go

package d2records
// StorePages is a map of all store page records
type StorePages map[string]*StorePageRecord
// StorePageRecord represent a row in the storepage.txt file
type StorePageRecord struct {
StorePage string
Code string
}