package vooga.rts.networking.examplechat;
/**
* starts the example chat program.
*
* @author David Winegar
*
*/
public class ExampleChatMain {
/**
* Do not instantiate this main.
*/
private ExampleChatMain () {
}
/**
* Main for example chat program.
*
* @param args to start main
*/
public static void main (String[] args) {
new ExampleChat();
}
}