You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
370 B

"""
All high level features of :class:`steam.client.SteamClient` are here in seperate submodules.
"""
from steam.client.features.misc import Misc
from steam.client.features.user import User
class FeatureBase(Misc, User):
"""
This object is used as base to implement all high level functionality.
The features are seperated into submodules.
"""
pass