1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-13 03:00:42 +00:00
OpenDiablo2/d2core/d2records/player_mode_record.go
gravestench 271673851a
Added RecordManager implementation to remove d2datadict singletons (#736)
* Added RecordManager implementation to remove d2datadict singletons

* fix object lookup test
2020-09-19 14:33:40 -04:00

14 lines
297 B
Go

package d2records
// PlayerModes stores the PlayerModeRecords
type PlayerModes map[string]*PlayerModeRecord
// PlayerModeRecord represents a single line in PlayerMode.txt
type PlayerModeRecord struct {
// Player animation mode name
Name string
// Player animation mode token
Token string
}