Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package creative
// FollowSwitch get auto follow switch from creative.
type FollowSwitch struct {
State int8 `json:"state"`
}
// PlayerFollow for player auto follow.
type PlayerFollow struct {
Show bool `json:"show"`
}
// Points is
type Points struct {
Type int `json:"type"`
From int64 `json:"from"`
To int64 `json:"to"`
Content string `json:"content"`
}
// Points is
type Bgm struct {
Sid int64 `json:"sid"`
Title string `json:"title"`
Author string `json:"author"`
JumpURL string `json:"jump_url"`
}