mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
9 lines
176 B
Python
9 lines
176 B
Python
|
class PotentialShard:
|
||
|
|
||
|
def __init__(self, id):
|
||
|
self.id = id
|
||
|
self.name = None
|
||
|
self.population = 0
|
||
|
self.active = 1
|
||
|
self.available = 1
|