2011-10-31 05:36:24 +00:00

22 lines
395 B
C#

using System;
namespace VertexIndexBuffer
{
#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
}