StoryItem

data class StoryItem(var id: Int = 0, var title: String, var icon: String? = null, var desc: String, var complete: Boolean = false, var needs: List<Int> = mutableListOf())

Constructors

Link copied to clipboard
constructor(id: Int = 0, title: String, icon: String? = null, desc: String, complete: Boolean = false, needs: List<Int> = mutableListOf())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var icon: String?
Link copied to clipboard
var id: Int
Link copied to clipboard
var needs: List<Int>
Link copied to clipboard