mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-08 00:37:38 +08:00
8 lines
122 B
Python
8 lines
122 B
Python
class Item:
|
|
item_id = None
|
|
item_type = None
|
|
is_available = None
|
|
|
|
def __init__(self) -> None:
|
|
pass
|