oldschool-toontown/otp/distributed/PotentialShard.py
2019-11-02 18:27:54 -04:00

12 lines
234 B
Python

class PotentialShard:
def __init__(self, id):
self.id = id
self.name = None
self.population = 0
self.welcomeValleyPopulation = 0
self.active = 1
self.available = 1
return