package ch.epfl.lca.sc250.gui; /** * This interface needs to be implemented by TP7 in order to work. * @author Christophe Trefois * */ public interface ITCPSender { /** * This method is supposed to send a msg over a TCP Socket to the other Player. * * @param ipAddress IP Address we want to make a request to * @param moneyAmount The amount of money we offer on the letter * @param letterPosition The position of the letter that we want to buy */ public void sendMessage(String ipAddress, String moneyAmount, String letterPosition); }