8 lines
134 B
Python
8 lines
134 B
Python
from .auto_id import AutoID
|
|
|
|
|
|
class Player(AutoID):
|
|
def __init__(self, name):
|
|
super().__init__()
|
|
self.name = name
|