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

package d2records
// Events holds all of the event records from events.txt
type Events []*EventRecord
// EventRecord is a representation of a single row from events.txt
type EventRecord struct {
Event string
}