Esempio n. 1
0
 public void Draw(SpriteBatch spriteBatch, TextureRegion textureRegion)
 {
     textureRegion.Draw(spriteBatch, position, index);
 }
Esempio n. 2
0
 public Animation(TextureRegion textureRegion)
 {
     this.textureRegion = textureRegion;
 }
Esempio n. 3
0
 public Layer(TextureRegion textureRegion)
 {
     this.textureRegion = textureRegion;
     tileList           = new List <Tile>();
 }