예제 #1
0
파일: Link.cs 프로젝트: bbirsch/Zelda
        //Moves Link up
        public void MoveUp()
        {
            state.MoveLinkUp();

            while (position.Y > 0)
            {
                position.Y--;
            }
        }
예제 #2
0
 //Sets link to the moving up state
 public void MovePlayerUp()
 {
     state.MoveLinkUp();
 }