public void Initialize(Perlenspiel game)
 {
     _game = game;
     _oldKeyState = Keyboard.GetState();
     _oldMouseState = Mouse.GetState();
 }
Пример #2
0
 public Game1(Perlenspiel game)
 {
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     _game = game;
 }