Poodletooth-iLand/otp/distributed/PotentialShard.py

13 lines
234 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.welcomeValleyPopulation = 0
2015-03-03 22:10:12 +00:00
self.active = 1
self.available = 1
return