1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-05 04:35:24 +00:00
OpenDiablo2/d2core/d2records/storepage_record.go
Albin 8b2cc76c30
Added ObjectMode, StorePage and Colors.txt resource loaders (#771)
* add ObjMode.txt loader

* add colors.txt loader

* added storepage loader

* Update storepage_loader.go

removed printline

Co-authored-by: kottz <edward.kallstedt@gmail.com>
2020-10-21 11:05:53 -04:00

11 lines
247 B
Go

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
}