MapBuild

data class MapBuild(val id: Int = 0, val name: String = "", val floors: List<Floor> = emptyList())

This class represents the map build object that is used to build the map in the 3D scene

Parameters

id

the id of the map

name

the name of the map

floors

the list of floors in the map

Constructors

Link copied to clipboard
constructor(id: Int = 0, name: String = "", floors: List<Floor> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
val id: Int = 0
Link copied to clipboard