puyo code.
hi to everyone
i have a code of puyo puyo game..but iam not getting the logic of the game ...
the code is
import java.util.*;
public class TehCodez {
public static void main(String[] tartar) {
HashMap tehDates = new HashMap();
tehDates.put(new Integer(2), "u");
tehDates.put(new Integer(4), "k");
tehDates.put(new Integer(1), "F");
tehDates.put(new Integer(7), "o");
tehDates.put(new Integer(5), " ");
tehDates.put(new Integer(8), "u");
tehDates.put(new Integer(6), "y");
tehDates.put(new Integer(3), "c");
for (int i = 1; i <= tehDates.size(); i++) {
System.out.print(tehDates.get(new Integer(i)));
}
}
}
please tell me logic of the game ..
thanks

