1234567891011121314151617181920212223242526 |
- 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"`
- Error string `json:"error"`
- Path string `json:"path"`
- }
- 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"`
- }
|