Poodletooth-iLand/otp/distributed/PotentialShard.py

12 lines
193 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
class PotentialShard:
def __init__(self, id):
self.id = id
self.name = None
self.population = 0
self.active = 1
self.available = 1
return