1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-27 09:35:29 +00:00
OpenDiablo2/d2core/d2records/monster_ai_record.go

10 lines
260 B
Go
Raw Normal View History

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
}