Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. public int GoWest()
  2.         {
  3.             if (position_x > -5)
  4.             {
  5.               position_x = position_x - 1;
  6.                 return position_x;
  7.             }
  8.             else
  9.             {
  10.                 Console.WriteLine("Can't go left");
  11.                 return position_x;
  12.             }
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement