diff --git a/src/com/annimon/turrets/GameClient.java b/src/com/annimon/turrets/GameClient.java new file mode 100644 index 0000000..ad756d3 --- /dev/null +++ b/src/com/annimon/turrets/GameClient.java @@ -0,0 +1,21 @@ +package com.annimon.turrets; + +import java.io.IOException; +import java.net.Socket; + +/** + * + * @author aNNiMON + */ +public class GameClient implements Constants { + + private final SocketHelper helper; + + public GameClient(String host) throws IOException { + helper = new SocketHelper(new Socket(host, PORT)); + } + + public SocketHelper getHelper() { + return helper; + } +}