mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
271673851a
* Added RecordManager implementation to remove d2datadict singletons * fix object lookup test
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
|
|
}
|