diff --git a/steam/client/__init__.py b/steam/core/__init__.py similarity index 100% rename from steam/client/__init__.py rename to steam/core/__init__.py diff --git a/steam/client/cm.py b/steam/core/cm.py similarity index 98% rename from steam/client/cm.py rename to steam/core/cm.py index 569cb52..37e395e 100644 --- a/steam/client/cm.py +++ b/steam/core/cm.py @@ -16,10 +16,10 @@ from Crypto.Random import random from steam.steamid import SteamID from steam.enums import EResult, EUniverse from steam.enums.emsg import EMsg -from steam.client import crypto -from steam.client.connection import TCPConnection -from steam.client.msg import is_proto, clear_proto_bit -from steam.client.msg import Msg, MsgProto +from steam.core import crypto +from steam.core.connection import TCPConnection +from steam.core.msg import is_proto, clear_proto_bit +from steam.core.msg import Msg, MsgProto server_list = [ ('162.254.196.41', '27020'), ('162.254.196.40', '27021'), diff --git a/steam/client/connection.py b/steam/core/connection.py similarity index 100% rename from steam/client/connection.py rename to steam/core/connection.py diff --git a/steam/client/crypto.py b/steam/core/crypto.py similarity index 100% rename from steam/client/crypto.py rename to steam/core/crypto.py diff --git a/steam/client/msg.py b/steam/core/msg.py similarity index 100% rename from steam/client/msg.py rename to steam/core/msg.py