Glatzemann 7a417d9484 added RenderTarget sample project (currently XNA version)
updated icons and game thumbnails of sample projects
2011-11-28 11:11:54 +00:00

22 lines
390 B
C#

using System;
namespace RenderTarget
{
#if WINDOWS || XBOX
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
static void Main(string[] args)
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
#endif
}