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())