Is it possible to run a XNA game after exiting another?
I tried to write at the default XNA's "Program.cs":
using (Game1 game = new Game1())
{
game.Run();
}
using (Game2 game = new Game2())
{
game.Run();
}
but after exiting the first game the second was running once and then just exited the game....
edit:
I found that when I try to exit the window with the X button (of the window...) the second game window starts...