Ejemplo n.º 1
0
 public void Render(float xTopLeft, float yTopLeft, SpriteBatch batch)
 {
     if (tileSprite != null)
     {
         tileSprite.SetPosition(xTopLeft, yTopLeft);
         batch.Draw(tileSprite);
     }
 }
 public void Render(float xTopLeft, float yTopLeft, SpriteBatch batch)
 {
     if (tileSprite == null)
         tileSprite = IoCManager.Resolve<IResourceManager>().GetSprite("space_texture");
     
     tileSprite.SetPosition(xTopLeft, yTopLeft);
     batch.Draw(tileSprite);
 }
Ejemplo n.º 3
0
 public void RenderTop(float xTopLeft, float yTopLeft, SpriteBatch wallTopsBatch)
 {
 }
Ejemplo n.º 4
0
 public void RenderGas(float xTopLeft, float yTopLeft, int tileSpacing, SpriteBatch gasBatch)
 {
 }
Ejemplo n.º 5
0
 public void DrawDecals(float xTopLeft, float yTopLeft, int tileSpacing, SpriteBatch decalBatch)
 {
 }