XNA physics testbed, just 2 cubes for now, move with a/d keys

This commit is contained in:
ejcoumans
2006-09-19 19:03:41 +00:00
parent 7faf84d784
commit 1d539aa662
10 changed files with 767 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System;
namespace Physics
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}