1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-12 18:50:42 +00:00
OpenDiablo2/d2core/d2records/monster_ai_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

10 lines
260 B
Go

package d2records
// MonsterAI holds the MonsterAIRecords, The monai.txt file is a lookup table for unit AI codes
type MonsterAI map[string]*MonsterAIRecord
// MonsterAIRecord represents a single row from monai.txt
type MonsterAIRecord struct {
AI string
}