Package org.ggp.base.apps.player

Source Code of org.ggp.base.apps.player.ProxiedPlayerRunner

package org.ggp.base.apps.player;

import java.io.IOException;

import org.ggp.base.player.gamer.Gamer;
import org.ggp.base.player.gamer.statemachine.random.RandomGamer;
import org.ggp.base.player.proxy.ProxyGamePlayer;

public final class ProxiedPlayerRunner
{
    public static void main(String[] args) throws IOException
    {
        Class<? extends Gamer> toLaunch = RandomGamer.class;
        ProxyGamePlayer player = new ProxyGamePlayer(9147, toLaunch);
        player.start();
    }
}
TOP

Related Classes of org.ggp.base.apps.player.ProxiedPlayerRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.