This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
openskins-common/datatypes/character.go

11 lines
221 B
Go
Raw Permalink Normal View History

2020-12-26 03:22:45 +01:00
package datatypes
// Character represents something that can be skinned
type Character struct {
2020-12-27 08:26:20 +01:00
UID string `json:"uid"`
2020-12-26 03:22:45 +01:00
Skin Skin `json:"skin"`
}
2020-12-27 08:26:20 +01:00
// Characters are an array of Character
type Characters []Character