package tp7;

import java.net.*;

public class ServeurThread extends Thread {

	private GUI gui;
	private Socket sck;

	public ServeurThread(GUI gui, Socket sck) {
		this.gui = gui;
		this.sck = sck;
	}

	public void run() {
		//A compléter
	}
}
