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,21 @@
using System;
namespace Physics
{
partial class Game1
{
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.graphics = new Microsoft.Xna.Framework.Components.GraphicsComponent();
this.GameComponents.Add(this.graphics);
}
private Microsoft.Xna.Framework.Components.GraphicsComponent graphics;
}
}