001    import org.util.xml.io.*;
002    
003    public class SampleAgent {
004    
005            public static void main(String[] args) throws Exception {
006                    String ip = "localhost"; 
007                    int port = 3310;
008                    int timeout = 60000; 
009                    String nickname = "sample player";
010                    int rcid = 0;
011                    int vtid = 0;
012                    RealPlayer player = new RealPlayer(ip, port, timeout, nickname, rcid, vtid);
013                    
014                    
015            }
016    }