OnScreenPropertyDetails
data class OnScreenPropertyDetails(val propertyId: Int, val distToScreenCenter: Float, val buildingDetails: List<OnScreenBuildingDetails>)
Represents a property visible on the screen. Links property information with its associated building details.
Parameters
propertyId
The unique identifier of the property.
distToScreenCenter
The property's distance from the center of the screen.
buildingDetails
The building to which this property belongs.
Constructors
Link copied to clipboard
constructor(propertyId: Int, distToScreenCenter: Float, buildingDetails: List<OnScreenBuildingDetails>)