CustomPath

data class CustomPath(    var id: Int? = null,     var name: String? = null,     var x: Double? = null,     var y: Double? = null,     var mapId: Int? = null,     var mapName: String? = null) : Parcelable

Constructors

Link copied to clipboard
constructor(id: Int? = null, name: String? = null, x: Double? = null, y: Double? = null, mapId: Int? = null, mapName: String? = null)

Properties

Link copied to clipboard
var id: Int?
Link copied to clipboard
var mapId: Int?
Link copied to clipboard
Link copied to clipboard
var name: String?
Link copied to clipboard
var x: Double?
Link copied to clipboard
var y: Double?

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)