public interface Clothes
Modifier and Type | Interface and Description |
---|---|
static interface |
Clothes.Garment
A aingle piece of clothes the player/npc is wearing, e.g. pants, shoes, headgear etc.
|
static class |
Clothes.Type |
Modifier and Type | Method and Description |
---|---|
void |
add(short id) |
boolean |
deserialize(byte[] bytes)
Deserializes a byte array and applies all information stored in it to
this Clothes object.
|
Clothes.Garment |
get(Clothes.Type type) |
Clothes.Garment |
remove(Clothes.Type type) |
void |
removeAll() |
byte[] |
serialize()
Serializes the clothes, i.e. turns all information into a byte array.
|
void add(short id)
Clothes.Garment get(Clothes.Type type)
Clothes.Garment remove(Clothes.Type type)
void removeAll()
byte[] serialize()
deserialize(byte[])
boolean deserialize(byte[] bytes)
serialize()
.bytes
- the byte array representing the Clothes object.