Training

@Serializable
data class Training(val id: Long, val spent: Long, val done: Boolean)

Information about a character's trained skill-tree.

Parameters

id

the skill tree's ID

spent

the amount of hero points spent in the tree

done

a flag indicating whether the tree is fully trained

Constructors

Link copied to clipboard
constructor(id: Long, spent: Long, done: Boolean)

Properties

Link copied to clipboard

This field holds a flag indicating whether the tree is fully trained.

Link copied to clipboard
val id: Long

This field holds the skill tree's ID.

Link copied to clipboard
val spent: Long

This field holds the amount of hero points spent in the tree.