public void ClearKeyBindings()
 {
     keyBindings = null;
 }
 public void LoadKeyBindings(string file)
 {
     log.InfoFormat("Loading bindings data from {0}", file);
     Stream stream = AssetManager.Instance.FindResourceData("Interface", file);
     keyBindings = new KeyBindings();
     keyBindings.Load(stream);
     stream.Close();
 }