Training

@Serializable
data class Training(val id: Int, val spent: Int, 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: Int, spent: Int, 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: Int

This field holds the skill tree's ID.

Link copied to clipboard
val spent: Int

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