Exemplo n.º 1
0
 public void Draw(SpriteBatch spriteBatch)
 {
     foreach (T TV in Objects.ToArray())
     {
         if (TV != null)
         {
             TV.Draw(spriteBatch);
         }
     }
 }