mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-01 04:06:27 +00:00
15 lines
399 B
Python
15 lines
399 B
Python
class AndrealImageGeneratorAccount:
|
|
def __init__(
|
|
self,
|
|
name: str = "Player",
|
|
code: int = 123456789,
|
|
rating: int = -1,
|
|
character: int = 5,
|
|
character_uncapped: bool = False,
|
|
):
|
|
self.name = name
|
|
self.code = code
|
|
self.rating = rating
|
|
self.character = character
|
|
self.character_uncapped = character_uncapped
|