123456789101112131415161718192021222324 |
- package mc
- type profile struct {
- ID string `json:"id"`
- Name string `json:"name"`
- Properties []struct {
- Name string `json:"name"`
- Value string `json:"value"`
- } `json:"properties"`
- }
- type texture struct {
- Timestamp int64 `json:"timestamp"`
- ProfileID string `json:"profileId"`
- ProfileName string `json:"profileName"`
- Textures struct {
- SKIN struct {
- URL string `json:"url"`
- } `json:"SKIN"`
- CAPE struct {
- URL string `json:"url"`
- } `json:"CAPE"`
- } `json:"textures"`
- }
|