Пример #1
0
 /// <summary>
 /// Adds a binding to the list to be monitored.
 /// </summary>
 /// <param name="bind">The new key binding to monitor.</param>
 public virtual void AddBind(Bind bind)
 {
     _Binds.Add(bind.Name, bind);
 }
Пример #2
0
 /// <summary>
 /// Adds the specified screen to the screen manager.
 /// </summary>
 /// <param name="screen">The screen to be added.</param>
 public virtual void AddScreen(Screen screen)
 {
     _Screens.Add(screen.Name, screen);
     DepthCheck();
 }