creative.go 541 B

123456789101112131415161718192021222324252627
  1. package creative
  2. // FollowSwitch get auto follow switch from creative.
  3. type FollowSwitch struct {
  4. State int8 `json:"state"`
  5. }
  6. // PlayerFollow for player auto follow.
  7. type PlayerFollow struct {
  8. Show bool `json:"show"`
  9. }
  10. // Points is
  11. type Points struct {
  12. Type int `json:"type"`
  13. From int64 `json:"from"`
  14. To int64 `json:"to"`
  15. Content string `json:"content"`
  16. }
  17. // Points is
  18. type Bgm struct {
  19. Sid int64 `json:"sid"`
  20. Title string `json:"title"`
  21. Author string `json:"author"`
  22. JumpURL string `json:"jump_url"`
  23. }