mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
8 lines
No EOL
175 B
Python
Executable file
8 lines
No EOL
175 B
Python
Executable file
class PotentialShard:
|
|
|
|
def __init__(self, id):
|
|
self.id = id
|
|
self.name = None
|
|
self.population = 0
|
|
self.active = 1
|
|
self.available = 1 |