Execute SNUSP/Java: Difference between revisions

Content added Content deleted
m (<lang>)
m (No one needs that enum but the code pointer)
Line 217: Line 217:
return retVal;
return retVal;
}
}
enum Direction{
private enum Direction{
UP,DOWN,LEFT,RIGHT;
UP,DOWN,LEFT,RIGHT;
}
}