1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-02 11:45:22 +00:00
OpenDiablo2/d2core/d2records/events_record.go

10 lines
213 B
Go
Raw Normal View History

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
}