mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
9 lines
170 B
Python
9 lines
170 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class Player:
|
|
def __init__(self, iid, iusername, irole):
|
|
self.id = iid
|
|
self.username = iusername
|
|
self.role = irole
|
|
|