Many bugfixes and improvements

This commit is contained in:
Ziver Koc 2011-06-24 23:20:59 +00:00
parent c3e3bbf787
commit 363e0c6cfc
52 changed files with 2021 additions and 982 deletions

View file

@ -4,7 +4,7 @@ import java.net.DatagramPacket;
/**
* This interface is for processing received packets
* from the TNetworkUDPServer
* from the ThreadedUDPNetworkServer
*
* @author Ziver
*
@ -14,8 +14,8 @@ public interface ThreadedUDPNetworkThread extends Runnable{
/**
* Packet will be processed in this method
*
* @param packet is the received packet
* @param network is the network class that received the packet
* @param packet is the received packet
* @param network is the network class that received the packet
*/
public void receivedPacket(DatagramPacket packet, ThreadedUDPNetwork network);
}