// Update is called once per frame
 public bool GetButton(string key)
 {
     if (Input.GetKey(keybindings.CheckKey(key)))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }