Advertisement
bokunda

MovesExtensions

Jul 1st, 2024
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. public static class MovesExtensions
  2. {
  3.     public static ConsoleKey ToConsoleKey(this string move)
  4.         => move switch
  5.         {
  6.             Constants.Moves.Up => ConsoleKey.UpArrow,
  7.             Constants.Moves.Down => ConsoleKey.DownArrow,
  8.             Constants.Moves.Left => ConsoleKey.LeftArrow,
  9.             Constants.Moves.Right => ConsoleKey.RightArrow,
  10.             _ => ConsoleKey.None
  11.         };
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement