mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 23:26:41 -05:00
10 lines
213 B
Go
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
|
||
|
}
|