12 lines
118 B
Go
12 lines
118 B
Go
package maps
|
|
|
|
type OgreInfo struct {
|
|
Data [9]OgrePetInfo
|
|
}
|
|
|
|
type OgrePetInfo struct {
|
|
Id uint32
|
|
Shiny uint32
|
|
}
|
|
|