Exemplo n.º 1
0
        public Shell(IShellState shellState)
        {
            shellState = shellState ?? throw new ArgumentNullException(nameof(shellState));

            KeyHandlers.RegisterDefaultKeyHandlers(shellState.InputManager);
            ShellState = shellState;
        }
Exemplo n.º 2
0
 public Shell(IShellState shellState)
 {
     KeyHandlers.RegisterDefaultKeyHandlers(shellState.InputManager);
     ShellState = shellState;
 }