12 lines
237 B
Python
12 lines
237 B
Python
__all__ = ["UserListWidget"]
|
|
|
|
|
|
class UserListWidget:
|
|
"""
|
|
This widget displays the users currently connected to a Room.
|
|
|
|
It must be notified of changes in the user list by the RoomWidget it is a
|
|
part of.
|
|
"""
|
|
|
|
pass
|