Example #1
0
 public void LoadGameInterface()
 {
     inputManager = new InputManager(this);
     AddInput();
     debug = new Debug(Content, spriteBatch);
     fps = new FpsManager(Content, spriteBatch);
 }
Example #2
0
 public InputEvent(InputManager im, string name)
 {
     _Im = im;
     _Name = name;
 }