mirror of
https://github.com/PretendoNetwork/super-mario-maker.git
synced 2026-08-02 16:35:36 -05:00
29 lines
531 B
Go
29 lines
531 B
Go
package main
|
|
|
|
import "github.com/PretendoNetwork/nex-go"
|
|
|
|
type CourseMetadata struct {
|
|
DataID uint64
|
|
OwnerPID uint32
|
|
Size uint32
|
|
CreatedTime *nex.DateTime
|
|
UpdatedTime *nex.DateTime
|
|
Name string
|
|
MetaBinary []byte
|
|
Stars uint32
|
|
Attempts uint32
|
|
Failures uint32
|
|
Completions uint32
|
|
Flag uint32
|
|
DataType uint16
|
|
Period uint16
|
|
}
|
|
|
|
type CourseWorldRecord struct {
|
|
FirstPID uint32
|
|
BestPID uint32
|
|
CreatedTime *nex.DateTime
|
|
UpdatedTime *nex.DateTime
|
|
Score int32
|
|
}
|