- ScheduledWalk/창섭&상규 . . . . 14 matches
* 여정이 끝나거나 판의 모든 곳에 자취가 남을때까지 여정에 따라 판 위를 움직일 수 있다.(CurrentLocation, Walk) | 여정(Journey), 판(Board)
Location CurrentLocation;
CurrentLocation=startlocation;
CurrentLocation.x+=move[direction][0];
CurrentLocation.y+=move[direction][1];
if(CurrentLocation.x==-1) CurrentLocation.x=MyBoard->BoardSize.height-1;
if(CurrentLocation.x==MyBoard->BoardSize.height) CurrentLocation.x=0;
if(CurrentLocation.y==-1) CurrentLocation.y=MyBoard->BoardSize.width-1;
if(CurrentLocation.y==MyBoard->BoardSize.width) CurrentLocation.y=0;
MyBoard->LeaveTrace(CurrentLocation);
Found 1 matching page out of 7555 total pages (5000 pages are searched)
You can also click here to search title.