1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-03 03:55:22 +00:00
OpenDiablo2/d2core/d2records/storepage_record.go

11 lines
247 B
Go
Raw Normal View History

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