view src/main/java/alice/test/topology/aquarium/FishMovementTopology.java @ 402:dbfeb353a78d draft multicast tip

refs #3 test commit
author tatsuki
date Tue, 24 Jun 2014 19:06:41 +0900
parents 0aff26fb2375
children
line wrap: on
line source

package alice.test.topology.aquarium;
import alice.topology.node.TopologyNode;
import alice.topology.node.TopologyNodeConfig;

public class FishMovementTopology {
	public static void main(String[] args){
		TopologyNodeConfig conf = new TopologyNodeConfig(args);
		new TopologyNode(conf, new StartFishMovement());
		
	}

}