Mercurial > hg > Members > tatsuki > Alice
annotate src/alice/test/topology/movement/FishMovementTopology.java @ 93:6601f8854126 working
can KeyInputCodeSegment
author | sugi |
---|---|
date | Tue, 05 Jun 2012 16:33:28 +0900 (2012-06-05) |
parents | 02dfb6c72632 |
children |
rev | line source |
---|---|
81 | 1 package alice.test.topology.movement; |
2 import alice.topology.node.TopologyNode; | |
3 | |
4 public class FishMovementTopology { | |
5 public static void main(String[] args){ | |
6 FishMovementConfig conf = new FishMovementConfig(args); | |
7 new TopologyNode(conf, new StartFishMovement()); | |
8 | |
9 } | |
10 | |
11 } |