Did stuff

This commit is contained in:
2012-09-24 16:04:15 +02:00
parent 6ee4611182
commit 76594dddda
13 changed files with 143 additions and 69 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ namespace DepthsBelow
graphics.PreferredBackBufferWidth = 1280;
graphics.PreferredBackBufferHeight = 720;
graphics.IsFullScreen = false;
graphics.IsFullScreen = true;
this.IsMouseVisible = true;
}
@@ -97,7 +97,7 @@ namespace DepthsBelow
// TODO: Add your drawing code here
spriteBatch.Begin();
SpriteRenderComponent rc = soldier.GetComponent<SpriteRenderComponent>();
Component.SpriteRenderer rc = soldier.GetComponent<Component.SpriteRenderer>();
if (rc != null)
rc.Draw(spriteBatch);
spriteBatch.End();