StoryModel

class StoryModel(var id: Long = -1, var title: String = "", val maps: MutableMap<Long, GameMap> = mutableMapOf(), var chapters: MutableMap<String, ChapterModel> = mutableMapOf(), var missions: MutableList<MissionModel> = mutableListOf()) : Serializable

Constructors

Link copied to clipboard
constructor(id: Long = -1, title: String = "", maps: MutableMap<Long, GameMap> = mutableMapOf(), chapters: MutableMap<String, ChapterModel> = mutableMapOf(), missions: MutableList<MissionModel> = mutableListOf())

Properties

Link copied to clipboard
Link copied to clipboard
var id: Long
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun getMap(id: Long): GameMap?