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

11 lines
221 B
Go

package datatypes
// Character represents something that can be skinned
type Character struct {
UID string `json:"uid"`
Skin Skin `json:"skin"`
}
// Characters are an array of Character
type Characters []Character