Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class Player
  2. {
  3. static void Main(string[] args)
  4. {
  5.  
  6. while (true)
  7. {
  8.  
  9. Move();
  10. }
  11.  
  12. public void Train()
  13. {
  14. if (gold >= 1)
  15. {
  16. Console.WriteLine("TRAIN 1 1 0");
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement