forked from s_ranjbar/city_retrofit
Initial commit for lod branch
This commit is contained in:
parent
3be8de5cd1
commit
de2a319727
|
@ -131,6 +131,9 @@ class Building(CityObject):
|
|||
def attic_heated(self) -> Union[None, int]:
|
||||
"""
|
||||
Get if the city object attic is heated
|
||||
0: no attic in the building
|
||||
1: attic exists but is not heated
|
||||
2: attic exists and is heated
|
||||
:return: None or int
|
||||
"""
|
||||
return self._attic_heated
|
||||
|
@ -139,6 +142,9 @@ class Building(CityObject):
|
|||
def attic_heated(self, value):
|
||||
"""
|
||||
Set if the city object attic is heated
|
||||
0: no attic in the building
|
||||
1: attic exists but is not heated
|
||||
2: attic exists and is heated
|
||||
:param value: int
|
||||
"""
|
||||
if value is not None:
|
||||
|
@ -148,6 +154,9 @@ class Building(CityObject):
|
|||
def basement_heated(self) -> Union[None, int]:
|
||||
"""
|
||||
Get if the city object basement is heated
|
||||
0: no basement in the building
|
||||
1: basement exists but is not heated
|
||||
2: basement exists and is heated
|
||||
:return: None or int
|
||||
"""
|
||||
return self._basement_heated
|
||||
|
@ -156,6 +165,9 @@ class Building(CityObject):
|
|||
def basement_heated(self, value):
|
||||
"""
|
||||
Set if the city object basement is heated
|
||||
0: no basement in the building
|
||||
1: basement exists but is not heated
|
||||
2: basement exists and is heated
|
||||
:param value: int
|
||||
"""
|
||||
if value is not None:
|
||||
|
|
Loading…
Reference in New Issue
Block a user