2011-11-28 11:11:54 +00:00
|
|
|
using System;
|
2011-12-08 19:48:15 +00:00
|
|
|
using ANX.Framework.NonXNA;
|
2011-11-28 11:11:54 +00:00
|
|
|
|
|
|
|
namespace RenderTarget
|
|
|
|
{
|
|
|
|
static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
|
|
|
/// </summary>
|
|
|
|
static void Main(string[] args)
|
2012-02-15 19:48:46 +00:00
|
|
|
{
|
2011-11-28 11:11:54 +00:00
|
|
|
using (Game1 game = new Game1())
|
|
|
|
{
|
|
|
|
game.Run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|