Guest User

Untitled

a guest
Jul 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class Game
  2. {
  3. public InputProcessor inputProcessor = new InputProcessor();
  4.  
  5.  
  6.  
  7. public void WelcomeScreen()
  8. {
  9.  
  10. //Cropped stuff because it doesn't matter.
  11.  
  12. inputProcessor.ProcessMenu(Console.ReadLine());
  13. }
  14. }
  15.  
  16.  
  17.  
  18.  
  19. public class InputProcessor
  20. {
  21.  
  22. public void ProcessMenu(string input)
  23. {
  24. }
  25. }
Add Comment
Please, Sign In to add comment